|
| 10 Dec 2011 04:11 PM |
I will sohw you how to use Variables.
--[This is an easy script] while true do M = Instance.new("Message") M.Parent = game.Workspace M.Text = "Blalalalalalala" wait(1) M.Text = "LOLOLOL" wait(1) M:remove() end
M in that Script is a variable. You can change it to whatever you want. V = Instance.new("Message") Or Pie = Instance.new("Message") Pie.Parent = game.Workspace.
You can use almost any variable.
That's just a very good basic to know.
|
|
|
| Report Abuse |
|
|
xvgigakid
|
  |
| Joined: 22 Jun 2008 |
| Total Posts: 4407 |
|
|
| 10 Dec 2011 04:16 PM |
Heres an easier script
b = 0
while true do b = b +1 wait(0) end
Dont try and explain variables before explaining while true do, Instance.new() wait(), and parenting. |
|
|
| Report Abuse |
|
|
|
| 10 Dec 2011 04:19 PM |
| adding to what xv said, how is that basic? I highly doubt that beginners will understand that. |
|
|
| Report Abuse |
|
|