Hello!
I have a for loop for my game similar to piggy.
Here is my script:
for i = GameTime,0,-1 do
if i == 230 then
print('I == 5')
Values.KillFeed.Value = 'Doge is here!'
wait(1)
end
if not table.find(PlayingPlayers,Doge) then
break
end
Status.Value = ToMS(i)
wait(1)
end
It works,
but I == 5 never prints, and the toptext doesn’t change to: “Doge is here”