|
| 13 Mar 2013 03:47 PM |
| I did my first rain script ever but it didnt work! |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:48 PM |
| If you just started lua, do not go ahead and do advanced scripts yet. |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:49 PM |
| I did exactly what it said, but it sitll didn't work! And P.S. I only wnated that oen cuz it would help my game... |
|
|
| Report Abuse |
|
|
zars15
|
  |
| Joined: 10 Nov 2008 |
| Total Posts: 9999 |
|
|
| 13 Mar 2013 03:50 PM |
| Start with simple stuff, like changing name of part or similar. |
|
|
| Report Abuse |
|
|
| |
|
|
| 13 Mar 2013 03:51 PM |
| LOL is that even scripting though? |
|
|
| Report Abuse |
|
|
zars15
|
  |
| Joined: 10 Nov 2008 |
| Total Posts: 9999 |
|
|
| 13 Mar 2013 03:52 PM |
| game.Workspace.Part.Name = "EPIXBRICK,PLZ" |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:53 PM |
Akrya, that is scripting.
game.Workspace.Part.Name = "hello"
Is scripting.
Size does not matter.
Even if it is like:
game.Workspace:Remove()
It is still scripting. |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:53 PM |
| But they made a way to do that wihtout scripting, but I'll try thanks. |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:54 PM |
It is more fun scripting it, then just right, click and delete.
C: |
|
|
| Report Abuse |
|
|
velibor
|
  |
| Joined: 24 Nov 2009 |
| Total Posts: 1003 |
|
|
| 13 Mar 2013 03:54 PM |
Scripting in Roblox isn't hard to learn at all, but please start by the basics and learn that really well.
You won't build a tower without the bottom floor also, right ?
|
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:55 PM |
| Yes, there is a way to do some things without scripting, but once your game is in Play Mode, you're no longer to edit them and need scripts to do the work for you. |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:55 PM |
| velibor is right, thanks guys! I'll do that. :3 |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:56 PM |
The programming languages I am learning now is:
HTML Lua
Lua is very easy.
And HTML is way easier. |
|
|
| Report Abuse |
|
|
| |
|
zars15
|
  |
| Joined: 10 Nov 2008 |
| Total Posts: 9999 |
|
|
| 13 Mar 2013 03:58 PM |
| HTML + CSS are just a designing languages. |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 03:59 PM |
What is fun about HTML?
You can just type in a random script, and open your file and see what happens.
C: |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 04:05 PM |
| OMG i got the hard script to work! :D |
|
|
| Report Abuse |
|
|
velibor
|
  |
| Joined: 24 Nov 2009 |
| Total Posts: 1003 |
|
|
| 13 Mar 2013 04:08 PM |
HTML : HyperText Markup Language.
HTML IS NOT A PROGRAMMING LANGUAGE. IT IS A MARKUP LANGUAGE. (How many times do I need to say that..)
|
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 13 Mar 2013 04:11 PM |
Here is what was put in for rain script: local drop = game.Workspace.RainDrop:clone() game.Workspace.RainDrop.Anchored = false while wait(1.) do end local dropClone = drop:clone() dropClone.Position = Vector3.new(math.random(-100,100),100,math.random(-100,100)) dropClone.Parent = game.Workspace dropClone.Anchored = false |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 04:13 PM |
The only problem I see is.
"while wait(1.) do"
It should not have a decimal if it does not have any numbers with the value below "1"
Correct me if I am wrong. |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 04:16 PM |
| It said that on roblox wiki. :/ I'll try that, and if it doesn't work, than screw it... |
|
|
| Report Abuse |
|
|
|
| 13 Mar 2013 04:24 PM |
Wait one moment...
I figured out the problem.
When you put
local drop = game.Workspace.RainDrop:clone()
What is RainDrop?
It does not exist in the game yet.
You first need to insert a new Part with Instance.new, and script all of its property.
But this kind a script, is not really for beginners. |
|
|
| Report Abuse |
|
|