script.Parent.TextButton.MouseButton1Down:connect(function() script.Parent.Load.Rotation = (+24) end
You'd think this would be the way to rotate it. Can someone fix this?
Roblox needs you to give it a value to work with. So to fix this, just add a value to add onto.
script.Parent.TextButton.MouseButton1Down:connect(function() script.Parent.Load.Rotation = script.Parent.Load.Rotation+24 end