(I researched devforum about it but nothing helped)
I made an script that player can move a gui object and i wanted to put a gui height limit but something i did wrong i guess, where?
while true do
if script.Parent.Position.Y.Scale < -0.083 then
script.Parent.Position.Y.Scale = -0.083
end
wait()
end
Ooh, I have an idea, have you tried putting a print in the while loop?
If it outputs then it’s running if not it’s something wrong with a different part of the script
Something id suggest is you put a print function that constantly prints the y scale position. Then, if the scale position actually does go below that and doesn’t work, then you might need to try something else