R

koords grabbe

public
rrixh Apr 20, 2024 Never 83
Clone
Plaintext koordsgui.kxls.xlsk.xls 2 lines (2 loc) | 2.85 KB
1
-- [ @lulaslollipop🍭 on Roblox ] --
2
local v0=Instance.new("ScreenGui");local v1=Instance.new("Frame");local v2=Instance.new("TextLabel");local v3=Instance.new("TextButton");local v4=Instance.new("TextButton");local v5=Instance.new("TextButton");local v6=Instance.new("TextButton");local v7=Instance.new("TextLabel");v0.Name="koordgui";v0.Parent=game.CoreGui;v1.Name="main";v1.Parent=v0;v1.BackgroundColor3=Color3.new(1,1,1);v1.Position=UDim2.new(0.352638364,0,0.405797124,0);v1.Size=UDim2.new(0,228,0,170);v1.Style=Enum.FrameStyle.DropShadow;v1.Active=true;v1.Draggable=true;v2.Name="title";v2.Parent=v1;v2.BackgroundColor3=Color3.new(0,0,0);v2.Position=UDim2.new( -0.0517418832,0, -0.054933358,0);v2.Size=UDim2.new(0,235,0,19);v2.Font=Enum.Font.SciFi;v2.Text="Koordinate Grabber";v2.TextColor3=Color3.new(1,1,1);v2.TextSize=14;v3.Name="grab";v3.Parent=v1;v3.BackgroundColor3=Color3.new(0,0,0);v3.Position=UDim2.new(0.0381504558,0,0.500263834,0);v3.Size=UDim2.new(0,128,0,31);v3.Font=Enum.Font.SciFi;v3.Text="Get Koordinates";v3.TextColor3=Color3.new(1,1,1);v3.TextSize=14;v4.Name="kopy";v4.Parent=v1;v4.BackgroundColor3=Color3.new(0,0,0);v4.Position=UDim2.new(0.697107434,0,0.495215261,0);v4.Size=UDim2.new(0,52,0,32);v4.Font=Enum.Font.SciFi;v4.Text="Kopy";v4.TextColor3=Color3.new(1,1,1);v4.TextSize=14;v5.Name="teleport";v5.Parent=v1;v5.BackgroundColor3=Color3.new(0,0,0);v5.Position=UDim2.new(0.25,0,0.75,0);v5.Size=UDim2.new(0,60,0,32);v5.Font=Enum.Font.SciFi;v5.Text="Teleport";v5.TextColor3=Color3.new(1,1,1);v5.TextSize=14;v6.Name="klose";v6.Parent=v1;v6.BackgroundColor3=Color3.new(0,0,0);v6.Position=UDim2.new(0.55,0,0.75,0);v6.Size=UDim2.new(0,52,0,32);v6.Font=Enum.Font.SciFi;v6.Text="Klose";v6.TextColor3=Color3.new(1,1,1);v6.TextSize=14;v7.Name="koords";v7.Parent=v1;v7.BackgroundColor3=Color3.new(0,0,0);v7.Position=UDim2.new(0.0420129336,0,0.199266031,0);v7.Size=UDim2.new(0,194,0,37);v7.Font=Enum.Font.SciFi;v7.Text="";v7.TextColor3=Color3.new(1,1,1);v7.TextSize=14;game:GetService("UserInputService").InputBegan:connect(onKeyPress);v3.MouseButton1Down:Connect(function() v7.Text=tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position);wait(0.25);print("" .. tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position) );end);v6.MouseButton1Down:Connect(function() v0:Destroy();end);function mysplit(v76,v77) if (v77==nil) then v77="%s";end local v78={};for v80 in string.gmatch(v76,"([^" .. v77 .. "]+)" ) do table.insert(v78,v80);end return v78;end v5.MouseButton1Down:Connect(function() teleportTo=v7.Text;if (teleportTo and (teleportTo~="") and (teleportTo~=" ")) then teleportTo=tostring(teleportTo);koordsToTeleport=mysplit(teleportTo,", ");game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(koordsToTeleport[1],koordsToTeleport[2],koordsToTeleport[3]);end end);v4.MouseButton1Down:Connect(function() setclipboard("" .. v7.Text );end);