of     1   

coolboy10000
#36754075Tuesday, November 09, 2010 1:12 PM GMT

Some guy said to move a GUI to a position of your mouse would it be gui.Position=UDim2.new(0,mouse.x,0,mouse.y I thought it's supposed to be gui.AbsolutePosition=UDim2.new(0,mouse.x,0,mouse.y
coolboy10000
#36754083Tuesday, November 09, 2010 1:13 PM GMT

Forgot to add ')' to both.
Apocalyps
#36757126Tuesday, November 09, 2010 4:50 PM GMT

you cant access the mouse from GUI objects... use the MouseMoved event instead: script.Parent.MouseMoved:connect(function(x,y) guiobject.Position = UDim2.new(0,x,0,y) end)
coolboy10000
#36773672Tuesday, November 09, 2010 11:40 PM GMT

thanks

    of     1