happyf03
|
  |
| Joined: 28 May 2013 |
| Total Posts: 45 |
|
|
| 05 Jan 2015 01:04 PM |
| Umm well I cant script and I want ot make a strobe light if you could help me script it I would thank you a lot I would play but I don't know how to give you money if you know to script and you script it I will play thanks |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 05 Jan 2015 01:18 PM |
while wait(.05) do script.Parent.Enabled = false wait(.05) script.Parent.Enabled= true end
-- place in a light |
|
|
| Report Abuse |
|
|
|
| 05 Jan 2015 01:23 PM |
while true do script.Parent.Enabled = not script.Parent.Enabled wait(0.5) end |
|
|
| Report Abuse |
|
|
powertool
|
  |
| Joined: 01 Feb 2008 |
| Total Posts: 3771 |
|
|
| 05 Jan 2015 02:14 PM |
Strobes flash very fast. If you have a strobe that's fast enough, you'll flash it faster than the light update frequency. Beware of that.
local freq = 10 --Set this to how many times you want the light to flash every second. local strobing = true --This allows control of the strobe by another function, should you desire this.
while strobing and wait(1/freq) do script.Parent.Enabled = not script.Parent.Enabled end |
|
|
| Report Abuse |
|
|
Hibobb
|
  |
| Joined: 18 Apr 2010 |
| Total Posts: 2146 |
|
|
| 05 Jan 2015 02:16 PM |
Don't go causing seizures now
Hey, check this place out! http://www.roblox.com/Maze-Escape-Deep-Alpha-place?id=194858740 |
|
|
| Report Abuse |
|
|
happyf03
|
  |
| Joined: 28 May 2013 |
| Total Posts: 45 |
|
|
| 06 Jan 2015 08:05 PM |
| dory guys but none of this one's worked |
|
|
| Report Abuse |
|
|
|
| 06 Jan 2015 08:06 PM |
| Put the script inside the light |
|
|
| Report Abuse |
|
|
happyf03
|
  |
| Joined: 28 May 2013 |
| Total Posts: 45 |
|
| |
|
| |
|
happyf03
|
  |
| Joined: 28 May 2013 |
| Total Posts: 45 |
|
| |
|