Why does roblox sometimes delete or add codes into my script?
So , when I test my scripts usually its ok and normal but sometimes it adds a line or removes a line. The worst was that it deleted the whole script and I had to redo it.
1 | local InRadians = math.rad( 28 ) |
2 | local cos = math.cos(InRadians) |
3 | local t = game.Players.LocalPlayer.PlayerGui:WaitForChild() |
4 | local label = t.ScreenGui.TextLabel |
This is the script I wrote (it doesnt work and i am trying to fix it)
When I run the script this happens
1 | local InRadians = math.rad( 28 ) |
2 | local cos = math.cos(InRadians) |
3 | local t = game.Players.LocalPlayer.PlayerGui:WaitForChild() |
4 | local label = t.ScreenGui.TextLabel |
It happened a few times already so I just wanna know if anybody is experiencing this as well?