|
| 14 Jan 2014 08:43 PM |
| Not too hard. I just want to practice. |
|
|
| Report Abuse |
|
|
| |
|
|
| 14 Jan 2014 08:50 PM |
| An admin script that has over 1000 useful commands and is super efficient. |
|
|
| Report Abuse |
|
|
| |
|
|
| 14 Jan 2014 08:57 PM |
| pleaz! I need to practice! |
|
|
| Report Abuse |
|
|
| |
|
| |
|
Delones
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 1703 |
|
|
| 14 Jan 2014 09:29 PM |
I have one,
While a player is touching something, it is red BrickColor, while a player isn't touching it, it's black BrickColor. |
|
|
| Report Abuse |
|
|
Delones
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 1703 |
|
|
| 14 Jan 2014 09:30 PM |
Oh, and that 'print (hi)' was wrong. You need to print it as a string value.
print("Hi")
or..
hi = "hi" print(hi) |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 09:53 PM |
| o yea lol. I wasn't paying attention XD |
|
|
| Report Abuse |
|
|
yankeejr
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 4906 |
|
|
| 14 Jan 2014 09:56 PM |
| Snowy. Find me the audio that plays when firing daxter33's paintball gun. |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 09:56 PM |
| im a pretty bad scripter I cant figure out how to make that script. The one wer if im standing on it it is red and if im not it is black ._. |
|
|
| Report Abuse |
|
|
yankeejr
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 4906 |
|
| |
|
|
| 14 Jan 2014 09:58 PM |
| I don't understand it tho... wat am I supposed to do |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 09:58 PM |
| Make a meesage count down from ten to zero appear on the screen. |
|
|
| Report Abuse |
|
|
yankeejr
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 4906 |
|
|
| 14 Jan 2014 09:59 PM |
| Find the audio for me. Any way. |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 10:03 PM |
@night I can do that
m = Instance.new("Hint", Workspace) m.Text = "10" wait(1) m.Text = "9" wait(1) m.Text = "8" wait(1) m.Text = "7" wait(1) m.Text = "6" wait(1) m.Text = "5" wait(1) m.Text = "4" wait(1) m.Text = "3" wait(1) m.Text = "2" wait(1) m.Text = "1" wait(1) m.Text:Destroy()
|
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 10:05 PM |
num = 10 msg = Instance.new("Message",Workspace) for i=1,10 do msg.Text = num num = num - 1 wait(1) end |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 10:07 PM |
Lesson of the day. Enter this in, see what I does, and find out how.
local m = Instance.new("Hint",workspace)
for i = 1, 10 do m.Text = i.."/10" Wait(1) end
|
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 10:11 PM |
| Local not necessary since that's the only chunk. |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 10:12 PM |
| local variables are more efficient to the to your coding here one sec. |
|
|
| Report Abuse |
|
|
|
| 14 Jan 2014 10:27 PM |
/フフ so buff ム`ヽ / ノ) ∧ ∧ ) ヽ / | (´・ω・`⌒(ゝ._,ノ wow / ノ⌒7⌒ヽーく \ / 丶_ ノ ノ、 |/ such muscle wow`ヽ `ー-‘_人`ーノ 丶  ̄ _人’彡ノ /`ヽ _/\__ Post this on 10 others forums if you want to look like this beautiful creature :[] |
|
|
| Report Abuse |
|
|
|
| 15 Jan 2014 08:57 AM |
waka I made ur script better :3
num = 10 msg = Instance.new("Message",Workspace) for i=1,10 do msg.Text = num num = num - 1 wait(1) end
if msg.Text == "1" then wait(1) msg:Destroy() end
but thanks for that I didn't know how to do that earlier. I just learned :D |
|
|
| Report Abuse |
|
|
|
| 15 Jan 2014 09:00 AM |
| a script that creates an explosion wherever you click. Hint: its only about 10 lines. |
|
|
| Report Abuse |
|
|
|
| 15 Jan 2014 09:27 AM |
^^ that would be easy... kinda... |
|
|
| Report Abuse |
|
|