of     1   

KamikazeShard
#225980500Wednesday, October 04, 2017 11:43 PM GMT

Like in roblox studio, or outside applications you can click your mouse and drag it around and it creates a highlighted square, mine is working really weird, anyone mind telling me how to do it correctly? plr = game.Players.LocalPlayer local mouse = plr:GetMouse() local mousedown = false mouse.Button1Down:Connect(function() mousedown = true script.Parent.TextLabel.Position = UDim2.new(0,mouse.X,0,mouse.Y) end) mouse.Button1Up:Connect(function() mousedown = false script.Parent.TextLabel.Size = UDim2.new(0,0,0,0) end) mouse.Move:Connect(function() if mousedown == false then return end script.Parent.TextLabel.Size = UDim2.new(0,mouse.X,0,mouse.Y) end)
KamikazeShard
#225989945Thursday, October 05, 2017 4:21 AM GMT

bump1
KamikazeShard
#226001292Thursday, October 05, 2017 4:07 PM GMT

bump 2
KamikazeShard
#226014466Thursday, October 05, 2017 11:08 PM GMT

bump 3
KamikazeShard
#226486245Tuesday, October 17, 2017 3:32 AM GMT

ok bumping this because i need this again lol
KamikazeShard
#226497556Tuesday, October 17, 2017 3:55 PM GMT

aaaaaaggws

    of     1