We always love hearing from people that follow our tutorials on YouTube. Many have sent us demos or screenshots of the games they have been able to create because of the tutorials. That’s exactly why we do what we do!
Here is an email we got recently that we really enjoyed:
Hey guys!
I just wanted to thank you two for creating a great resource for game designing with Unity. I’m pleased to say I’ve followed your worm game tutorial videos with success. I’m currently a 3D artist at a game studio but I’ve always wanted to make games. I’m not the only one it seems, and seeing how quick the development can be with Unity, more dudes like me have this wacky idea of some day being able to make a living creating games from home on their own.
I know I have so much to learn before I can make this kind of leap but thanks to you guys I can’t stop thinking about this dream…..
I had no programing skill or knew anybody capable of creating unique code…. Only did basic HTML in school.
…
So, dudes.. I made it to the last worm video. The game’s working, and I even added some funky things I wiped up in zbrush…..
Thanks again for all the great tutorials. Here’s an older snapshot of the game.
Cheers!
- Pascal Chaumette
Toronto, Canada
How awesome does this Worminator Game look? We certainly love it and look forward to seeing the game completed.
Good luck Pascal!
Check out the work in progress HERE
Latest update (January 2011):
Want to make a Worm Game just like this? We have created over 30 free tutorials that will help you become a game developer!





![wormgame update[1]](http://tornadotwins.com/wp-content/uploads/2010/12/wormgame-update1-1024x332.jpg)
wow!!!
i was like wha’ the !?
this game is awesome !!
would you mind sending a mail to us with the link of this game when its completed :S ?
PS: i hope double dutch win the competition (i guess its a competition , right ?)
Yeah, we think it looks super awesome! We’re in touch with the creator of it and he’ll be updating us on when its done– we’ll surely let you know.
And yes, the remix competition for our music is still going.. hopefully the first week of January we’ll know whether we have won or not… keep your fingers crossed.
TT
its almost the end of January. did you win?
sadly No :’(
Well now I feel upstaged…. lol mine’s here: http://bit.ly/samswormgame
The game might be broken on that link so if it is feel free to download the Mac App here: http://www.archive.org/download/WormsGame/build.1.worm.game.desktop.zip
Wow Wow Wow
Hello Dear I am from India….
I am a software engineer in my home town!
You grate both of; to make game and You Improved my Brain as well to make a game in Unity 3D and easy to learn.
Amazing I seen all the videos on YouTube and downloaded all the videos and I learning also.. I feel greate…
I think Grate concept to make a “3D” Game in Unity 3D.
Please give me a link of “Awesome Wormgame” for Windows (PC) so I download that and learn my self that project!
Thank You So Much….
Hi Piyush,
M pavandev from baroda.
need your help for learning game development.
provide some good links for development.
if you are there plz reply me.
Thank you
This does look awesome. Great job Pascal!
how do you fix the rotation on the professional worm model
to fix the rotation problem just put the worm parts into empty game objects and then rotate the worm parts by 90 degrees
so the z axis is still facing the right way and they face forwards
Hey Me I am confused. Could you be more descriptive and tell us what else we need to do(if scripts need to be moved and adjusted to empty game objects we put worm parts in or if they stay where they are, if additional things need to be added, if ALL rotation axises need to be adjusted for each body part, etc.). B/c my model is still facing the wrong direction.
Hey guys I’ve got a problem.
The problem is that im trying to download unity 3d but when the download started it always says download failed for some weird reason.Just to let you know that I’ve got Windows XP
Hope you can reply!
do you have enuf disk space??
hope that doesn’t happen with me.
he tornado twins I have a good name for the game called The battle for the bible.
Hello there!
I need some help with this wormgame, i have followed the tutorials step by step but then when i had to make the fireballs diseappear unity complains like this:
Assets/Standard Assets/Scripts/Camera Scripts/killmeovertime.js(5,25): BCE0023: No appropriate version of ‘UnityEngine.Object.Destroy’ for the argument list ‘(System.Type, float)’ was found.
this i what it complains, and i can’t figure out how to fix this please anyone who know how to fix this, reply. I want to do this wormgame tutorial, thank you
i dont really remember that script .. but the error is pretty explicit ..
your line is
Destroy (System.Type,float);
there should be
Destroy(System.Type);
..
if i recall the prefab for the fireball is in a var called bullit;
so it wouls be like this:
Destroy(bullit);
(maybe Destroy(bullit.gameObject); , if the last one won’t work)
hope it helps .. somehow
hey! i am trying to make a RP game just like the HGS server on ARMA2 if you hade played it but i cant understand unity noyhing is working for me. I have checked out your toutrials but it aint working can you help me whit this????
looks good, especially for a first project. i really hope you continue to make games. you could make a sweet fps. keep letting the tt know cause id love to play your games
Hya there
I have a question about the 5th part of your video tutorial.
When i put in the script of the shooting part and i click play unity says
Assets/MoveAround.js(12,48): BCE0044: unexpected char: ”’.
Help me please
Thank you
never mind i already found the error and fixed it
now i have a problem with part 12 with the death part
when i put in: private var dead = false
Then it doesn’t colour the false part
and it give’s an error like:Assets/MoveAround.js(30,10): BCE0044: expecting (, found ‘LateUpdate’.
Help please
Ty
Anyone wana accually help me out i have the pro version (dont no why i bought it) of unity3d and i dont no how to script i have great game i dea’s and dont no how to get out there any help please i cant do this alone i followed and told all my freinds about unity and tornado twins i keep bragging how good u guys are on facebook,,, so if your’re in on my great ideas townado twins and wana help plz mail me @
RealitieBeats@gmail.com.
P.S. i make instrumentals/beats Youtube channel is—
http://www.youtube.com/user/RealitieBeats?feature=mhum
Hi!
Congrats on TT for being really good at game design.
I have a problem on the worm game. Part 10#. I have wrote the script that TT shows us for the turret rotation.(I am really sure that it is word for word) but i have 3 errors which i dont know how to sort out.please help
Here is the coding i have done and the errors:
CODING:
var LookAtTarget:Transform;
var damp = 6.0;
function Update ()
{
if(LookAtTarget)
{
var rotate = Quaternion.LookRotation(LookAtTarget.position = transform.position);
transform.rotation = Quaternion.Slerp(transform.rotation, rotate, Time.deltaTime * damp);
}
//transform.LookAt(LookAtTarget);
}
ERRORS:
1.Assets/TurretControl.js(8,78): BCE0044: expecting ), found ‘=’.
2.Assets/TurretControl.js(8,79): UCE0001: ‘;’ expected. Insert a semicolon at the end.
3.Assets/TurretControl.js(8,98): BCE0043: Unexpected token: ).
sorry that this is very long but i dont understand what is wrong
it would be really nice if someone could help me, and better if you could correct what i have done wrong 
If you would like to email me my email is L33tw4r10r@live.co.uk
Thankyou
Sorry guys looks like i made a simple mistake. All i had to do was replace the equal sign on line 8 to a minus sign (sigh*) sorry about that i need to watch and listen to his videos more carefully.
Hey guys, I love your work and videos. I was wondering how to make the games multiplayer such as an MMORPG
Hi ,in your tutorial with scripts (BankAccount script) i have problem.I make all things but if i start “the game” it show me error – “There are 2 audio listeners in the scene. Please ensure there is always exactly one audio listener in the scene.” please help me with that .Thanks
Hi Guys, really appreciate your efforts, as an old hand in the arch Viz game, im really excited about learning how to get my models into an immersive environment, one where people can interact with the model, and not just walk around a static model. Please keep your tutorials coming. And where did you learnt to script in Unity yourselves?
When men make gods, there is no God!
hi. can you help me i am trying to make a game in unity 3d but i cant play it
and the java script calld killmeovertime i cant place it on the fireball i have to (fhinish it) but i have copid your text file plz help me
when I press the play button, I get an error that says “all compiler errors must be fixed before entering play mode”
ik ben ook nederlands
ik heb unity geprobeerd
maar ik kom niet in het island level
ik vind hem niet
het lukt me niet om een bestuurbaar iets te maken
fight of the bible
is een goeie naam voor de game
succes ermee
how do i get the TurretControl to work please help me.
Hey,
I was watching your video on how to make iOS games, but It’s really expensive to buy all the tutorials, is there anyway to get it cheaper?
and I’m just wondering can you actually make it in windows first and then port it to mac and make it for iOS devices?
hey i have a modeling software that I’m grate with but i cant import my models in to unity. the software is k-3d its lick only $200.00 software will work and i do not want to get fined for getting them for free
It was awesome when you drew a cameltoe on the whiteboard in video 7. That would have made school a lot less “boring”.
brill
The Last Worm
oh and i got a problem with the script on vid number 12
I cant make the turrets shoot the fireballs one at a time they just dont shoot anything i dont know whats happening…. can somebody tell me some website where i can copy/paste the script
hi did u guys study programming like IT or software engineering. or did u learn unityscript by yourselves.
dear tornadotwins….. i dont know where the palce i can find all scripts you did in your tutorial, i think if you share it…it’ll very benefecial for us…. but thanx so much for your tutorial, it’s very helpful for starting my game project. please reply me in my email…
dear tornado twins i was watching how to create a 3rd person shooter game on youtube and in the description it says MOVE AROUND SCRIPT but once i click on to it i dont see the move around script on your website can you help me?
Hello i am in Kazakshtan, i don’t speak in English, i translated this comment in google. Thank you Tornado Twins. But when i see your videolessons, i nothing understand.
Debug.Log(“big thanks Tornado Twins”);
hey man great game if you could would you send me a link to the game when it is done it looks like a great game
hey sup bros
hey your super great tornados i love your tutors in unity that u made for VTC , i hope I will c you again with “New In Unity 3.4″
hey guys i have a problem ….
in part 2 tutorial there is movement right i cant move after putting it in the sphere
plzz help me
on youtube you said you could get the movement script from the worm game here. where is it
?!?!?!?!?!?!
If you have not yet decided a name for our game , then here is one “ANGELS VS DEMONS – The circle of life.”
it would be better if you give some details on the outline of the story so that its easy to get a few more ideas as possible .
Hey can u show me how to make a game like/similar to portal! that would be amazing because when i play it the graphics make me think of unity and I have always wanted to make somthing similar or even better add to the story. please post a video on this some time soon and that would make me soooooo happy. I love your videos, and keep working on this stuff!
hey guys thanks so much for everything youve done! my whole team, Redstar Games, has watched your tutorials, and now we’re working on a space game and a zombie game, and yes i did read your article on them
-Berrin
i need help making a game but i have not made one be for im using unity and im need two know how two make a start up for a multtyplayer game and oc select and a and how two let them log in and log out out my game is about warrior cats and i need two make pray and turn it in two health and i need two have for group “clans” and the cats have claws i have the map done and im working on the ocs but i need help bad do you think you can tell me what two do
Heey guys! im in the middle of the TT tutorial, but im stuck, i cant get my character to die when falling of the edge, and respawn. it would be great if i could get someones finished heakthcontrol script and possibly the movearound script aswell, thanks //Austin
Whats up very nice web site!! Guy .. Excellent .. Amazing .. I will bookmark your blog and take the feeds also?I am happy to search out so many useful information here within the submit, we’d like work out extra techniques in this regard, thanks for sharing. . . . . .
i really want to learn how to make video games on the computer
It is really a nice and useful piece of information. I am satisfied that you simply shared this useful info with us. Please keep us informed like this. Thank you for sharing.
cheea gangster
If you are using a program like 3d studio max to do modeling is it better to create each model one by one and import into unity or should you create your entire scene in 3d studio or whatever editor first and then import the entire scene into the unity game engine? Any help many thanks!
Dan
I hav the new version of unity 3d and it doesnt come with the island demo, and so it doesnt it doesnt come with the smooth follow script. i hav tried everywhere on the internet and they all come up with errors. can someone just spare 1 minute of their time just to reply to me. plz
On my computer there in an error on the script in part 15 of TT Unity 3D tuturial.
The error is on around line 58 of the move around script:
gotHit = true
The error says:
Assets/Scenes/My Scripts/MoveAround.js(58,15): BCE0044: expecting :, found ‘=’.
Can someone tell me what to do plaese!
hi tornado twins, I need the links for the worm tutorialz and was wondering if you could give me the link because gameprefabs.com won,t let me download any of the turrets, bridge, fence etc. Thankz, TKMedia.
Guys i really wanna learn scripting in unity but i dunno where to start. I can see from tutorials for worminator that you guys have some, well, a lot more experience in this than me. Only scripting i know is something from QBasic and MSW Logo (14 yrs old) but i dont think that will help. I have seen some tutorials (i have looked on 3DBuzz but they are using stuff that you get with unity and they are not doing any scripting) so im wondering: where to start with SCRIPTING for unity (javascript ofc.). Are there some tutorials for scripting or what?
greetings from croatia,
Karlo
Hey I am here and i want to start of please help me out
Hi guys can you help me out Im trying to make a 3rd person WW2 game but I don’t now how to use unity and also when I get free stuff of asset store it doesn’t work l help me out.
what do you mean it doesn’t work? Are you unable to import it or what?
Dear Tornadotwins,
Hi you guys in one of your videos on youtube for the worm game said” we will show you how to make a counter to count the turrets then go on to the next level or scene
Hi TT, I have a little problem with my HealthControl script
HealthControl:
var Health1 : Texture2D; //one live left
var Health2 : Texture2D; //two lives left
var Health3 : Texture2D; //full lives
static var LIVES = 3;
function update ()
{
switch(LIVES)
{
case 3:
guiTexture.texture = Health3;
break;
case 2:
guiTexture.texture = Health2;
break;
case 1:
guiTexture.texture = Health1;
break;
case 0:
//gameover script here
break;
}
}
And MoveAround:
var speed = 3.0;
var rotateSpeed = 3.0;
var bullitPrefab:Transform;
private var dead = false;
function OnControllerColliderHit(hit : ControllerColliderHit)
{
if(hit.gameObject.tag ==”fallout”)
{
dead = true;
//substract live here
HealthControl.LIVES -= 1;
}
}
function Update () {
var controller : CharacterController = GetComponent(CharacterController);
// Rotate around y – axis
transform.Rotate(0, Input.GetAxis (“Horizontal”) * rotateSpeed, 0);
// Move forward / backward
var forward : Vector3 = transform.TransformDirection(Vector3.forward);
var curSpeed : float = speed * Input.GetAxis (“Vertical”);
controller.SimpleMove(forward * curSpeed);
if(Input.GetButtonDown(“Jump”))
{
var bullit = Instantiate(bullitPrefab,
GameObject.Find(“spawnPoint”).transform.position,
Quaternion.identity);
bullit.rigidbody.AddForce(transform.forward * 2000);
}
}
function LateUpdate()
{
if(dead)
{
transform.position = Vector3(0,4,0);
gameObject.Find(“Character Camera”).transform.position = Vector3(0,4,-10);
dead = false;
}
}
@script RequireComponent(CharacterController)
Can you see what I did wrong?
hopelijk kan je nog een beetje nederlands ;p
Opamoeder
can you send the java scripts for game making in the 2 and 3 videos to my email