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
Screen1 = game.Workspace.Screen1 Power = script.Parent.Power --Made By MillerrIAm --Helpers Liliardio & WeArefSociety -------------------------------------------------------------------- --Start Script Power.Changed:Connect(function(Power2) if Power2 then while wait() do Screen1.Decal.Texture = "http://www.roblox.com/asset/?id=665256981" wait(0.1) Screen1.Decal.Texture = "http://www.roblox.com/asset/?id=665257289" wait(0.1) Screen1.Decal.Texture = "http://www.roblox.com/asset/?id=665257768" wait(0.1) end end 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.
while Power.Value do end