Advertisement
Guest User

Coordinates Grabber

a guest
Mar 30th, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.79 KB | None | 0 0
  1. -- Made by Vysen
  2. local RobloxCoordinatesGrabber = Instance.new("ScreenGui")
  3. local MainFrame = Instance.new("Frame")
  4. local Ignore = Instance.new("TextLabel")
  5. local Ignore_2 = Instance.new("TextLabel")
  6. local Title = Instance.new("TextLabel")
  7. local Coordinates = Instance.new("TextLabel")
  8. local LocationWTP = Instance.new("TextButton")
  9. local CopyCo = Instance.new("TextButton")
  10.  
  11.  
  12. RobloxCoordinatesGrabber.Name = "RobloxCoordinatesGrabber"
  13. RobloxCoordinatesGrabber.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  14. RobloxCoordinatesGrabber.ResetOnSpawn = false
  15.  
  16. MainFrame.Name = "MainFrame"
  17. MainFrame.Parent = RobloxCoordinatesGrabber
  18. MainFrame.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  19. MainFrame.Position = UDim2.new(0.355958968, 0, 0.396805912, 0)
  20. MainFrame.Size = UDim2.new(0, 365, 0, 168)
  21. MainFrame.Active = true
  22. MainFrame.Draggable = true
  23.  
  24. Ignore.Name = "Ignore"
  25. Ignore.Parent = MainFrame
  26. Ignore.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  27. Ignore.BorderSizePixel = 0
  28. Ignore.Size = UDim2.new(0, 365, 0, 10)
  29. Ignore.Font = Enum.Font.SourceSans
  30. Ignore.Text = ""
  31. Ignore.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. Ignore.TextSize = 14.000
  33.  
  34. Ignore_2.Name = "Ignore"
  35. Ignore_2.Parent = MainFrame
  36. Ignore_2.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  37. Ignore_2.BorderSizePixel = 0
  38. Ignore_2.Position = UDim2.new(0, 0, 0.940476179, 0)
  39. Ignore_2.Size = UDim2.new(0, 365, 0, 10)
  40. Ignore_2.Font = Enum.Font.SourceSans
  41. Ignore_2.Text = ""
  42. Ignore_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  43. Ignore_2.TextSize = 14.000
  44.  
  45. Title.Name = "Title"
  46. Title.Parent = MainFrame
  47. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  48. Title.BackgroundTransparency = 1.000
  49. Title.Position = UDim2.new(0.224657536, 0, 0.0595238097, 0)
  50. Title.Size = UDim2.new(0, 200, 0, 27)
  51. Title.Font = Enum.Font.SourceSans
  52. Title.Text = "Coordinates Grabber By Vysen"
  53. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  54. Title.TextScaled = true
  55. Title.TextSize = 14.000
  56. Title.TextWrapped = true
  57.  
  58. Coordinates.Name = "Coordinates"
  59. Coordinates.Parent = MainFrame
  60. Coordinates.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  61. Coordinates.BorderSizePixel = 0
  62. Coordinates.Position = UDim2.new(0.10958904, 0, 0.369047612, 0)
  63. Coordinates.Size = UDim2.new(0, 283, 0, 44)
  64. Coordinates.Font = Enum.Font.SourceSans
  65. Coordinates.Text = ""
  66. Coordinates.TextColor3 = Color3.fromRGB(148, 148, 148)
  67. Coordinates.TextScaled = true
  68. Coordinates.TextSize = 14.000
  69. Coordinates.TextWrapped = true
  70.  
  71. LocationWTP.Name = "LocationWTP"
  72. LocationWTP.Parent = MainFrame
  73. LocationWTP.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  74. LocationWTP.Position = UDim2.new(0.0328767113, 0, 0.678571403, 0)
  75. LocationWTP.Size = UDim2.new(0, 154, 0, 37)
  76. LocationWTP.Font = Enum.Font.SourceSans
  77. LocationWTP.Text = "Copy Coordinates with tp script"
  78. LocationWTP.TextColor3 = Color3.fromRGB(255, 255, 255)
  79. LocationWTP.TextSize = 14.000
  80. LocationWTP.TextWrapped = true
  81.  
  82. CopyCo.Name = "CopyCo"
  83. CopyCo.Parent = MainFrame
  84. CopyCo.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  85. CopyCo.Position = UDim2.new(0.517808199, 0, 0.678571403, 0)
  86. CopyCo.Size = UDim2.new(0, 154, 0, 37)
  87. CopyCo.Font = Enum.Font.SourceSans
  88. CopyCo.Text = "Copy Coordinates"
  89. CopyCo.TextColor3 = Color3.fromRGB(255, 255, 255)
  90. CopyCo.TextSize = 14.000
  91. CopyCo.TextWrapped = true
  92.  
  93. -- scripts:
  94.  
  95.  
  96. CopyCo.MouseButton1Down:Connect(function()
  97. Coordinates.Text = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  98. setclipboard(""..Coordinates.Text)
  99. wait(0.25)
  100. print(''..tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position))
  101. end)
  102.  
  103. LocationWTP.MouseButton1Down:Connect(function()
  104. Coordinates.Text = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  105. setclipboard("game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(" ..Coordinates.Text..")")
  106. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement