Alright so I posted here earlier today about my game was spiking for ten seconds when I tried to play these trons... with this, I was able to get help and get it fixed but now I can't get it to stop... I want to avoid using while true do at all costs. I feel like this will seem like a stupid question but I sat down and took the time to write a new script that was my own with what I was told to do. At least it's now my own script. The only true
01 | Screen 1 = game.Workspace.Screen 1 |
02 | Power = script.Parent.Power |
03 | --Made By MillerrIAm |
04 | --Helpers Liliardio & WeArefSociety |
05 | -------------------------------------------------------------------- |
06 | --Start Script |
07 | Power.Changed:Connect( function (Power 2 ) |
08 | if Power 2 then |
09 | while wait() do |
10 | Screen 1. Decal.Texture = "http://www.roblox.com/asset/?id=665256981" |
11 | wait( 0.1 ) |
12 | Screen 1. Decal.Texture = "http://www.roblox.com/asset/?id=665257289" |
13 | wait( 0.1 ) |
14 | Screen 1. Decal.Texture = "http://www.roblox.com/asset/?id=665257768" |
15 | wait( 0.1 ) |
16 | end |
17 | end |
18 | end ) |
Thank you in advance for the comments, answers & help!
You can check if Power.Value is true in the while loop. When it becomes false, the loop will stop.
1 | while Power.Value do |
2 |
3 | end |