I'm trying to move a text button, but it always output can't set value. Gosh i'm failing at the simple stuff...
local settings = script.Parent local graphics_q = script.Parent.Parent.Graphics_Q settings.MouseButton1Click:connect(function() for i=0, 210 do graphics_q.AbsolutePosition = Vector2.new(i,0) print("Sucess") wait(0.40) end end)
That is because AbsolutePosition
is a Read Only value. You can check the value but if you try to set it, it will error out. Read more at the wiki page