|
| 01 May 2015 04:46 AM |
| My script was own self fine but I couldn't go into Test Mode it would instantly say 'Not Responding'. Whyeeee? |
|
|
| Report Abuse |
|
|
|
| 01 May 2015 04:49 AM |
You must be using Windows Vista
★Mommy Guest told me that if a Guest lay an Egg, it will hatch more than 10 Guests inside the Egg★ |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 01 May 2015 04:54 AM |
Mind posting the script?
This is a triumph, |
|
|
| Report Abuse |
|
|
|
| 01 May 2015 04:57 AM |
local W1 = game.Workspace.Water.Water1 local W2 = game.Workspace.Water.Water2
while true do function OnClicked () wait(0.2) W1.Transparency = 0.5 W2.Transparency = 0.5 wait(2) W1.Transparency = 1 W2.Transparency = 1
end
end
Anything wrong here? |
|
|
| Report Abuse |
|
|
QuisMo
|
  |
| Joined: 09 Jul 2010 |
| Total Posts: 16640 |
|
|
| 01 May 2015 04:57 AM |
Rekt
Help me afford the Bluesteel Warhelm of Rekt, http://www.roblox.com/---item?id=238287437 |
|
|
| Report Abuse |
|
|
|
| 01 May 2015 04:59 AM |
nope
probably just your PC
★Mommy Guest told me that if a Guest lay an Egg, it will hatch more than 10 Guests inside the Egg★ |
|
|
| Report Abuse |
|
|
Ariphael
|
  |
| Joined: 08 Apr 2015 |
| Total Posts: 2103 |
|
|
| 01 May 2015 05:02 AM |
W1 = game.Workspace.Water.Water1 W2 = game.Workspace.Water.Water2
function OnClicked () wait(0.2) W1.Transparency = 0.5 W2.Transparency = 0.5 wait(2) W1.Transparency = 1 W2.Transparency = 1 end
while wait() do OnClicked() end
The problem is that you weren't calling the function. It would be practical to place the function outside the loop. I can tell by the function name that you are trying to fire something when clicking something, you can use the event MouseButton1Click. I also don't understand why you used 'local'.
This is a triumph, |
|
|
| Report Abuse |
|
|
|
| 01 May 2015 07:09 AM |
| Oh I used local because I was following a Roblox tutorial on YT. |
|
|
| Report Abuse |
|
|