Advertisement
CallMeChin

Coordinates Grabber Gui

Dec 18th, 2018
29,235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. --[[
  2. Made By CallMeChin
  3. https://v3rmillion.net/member.php?action=profile&uid=605761
  4. --]]
  5. local coordgui = Instance.new("ScreenGui")
  6. local main = Instance.new("Frame")
  7. local title = Instance.new("TextLabel")
  8. local credit = Instance.new("TextLabel")
  9. local grab = Instance.new("TextButton")
  10. local copy = Instance.new("TextButton")
  11. local cords = Instance.new("TextLabel")
  12. --Properties:
  13. coordgui.Name = "coordgui"
  14. coordgui.Parent = game.CoreGui
  15.  
  16. main.Name = "main"
  17. main.Parent = coordgui
  18. main.BackgroundColor3 = Color3.new(1, 1, 1)
  19. main.Position = UDim2.new(0.352638364, 0, 0.405797124, 0)
  20. main.Size = UDim2.new(0, 228, 0, 142)
  21. main.Style = Enum.FrameStyle.DropShadow
  22. main.Active = true
  23. main.Draggable = true
  24.  
  25. title.Name = "title"
  26. title.Parent = main
  27. title.BackgroundColor3 = Color3.new(0, 0, 0)
  28. title.Position = UDim2.new(-0.0517418832, 0, -0.054933358, 0)
  29. title.Size = UDim2.new(0, 235, 0, 19)
  30. title.Font = Enum.Font.SciFi
  31. title.Text = "Coordinates Grabber Gui"
  32. title.TextColor3 = Color3.new(1, 1, 1)
  33. title.TextSize = 14
  34.  
  35. credit.Name = "credit"
  36. credit.Parent = main
  37. credit.BackgroundColor3 = Color3.new(0, 0, 0)
  38. credit.Position = UDim2.new(-0.0517418832, 0, 0.930982113, 0)
  39. credit.Size = UDim2.new(0, 235, 0, 19)
  40. credit.Font = Enum.Font.SciFi
  41. credit.Text = "Made By CallMeChin @ V3RM"
  42. credit.TextColor3 = Color3.new(1, 1, 1)
  43. credit.TextSize = 14
  44.  
  45. grab.Name = "grab"
  46. grab.Parent = main
  47. grab.BackgroundColor3 = Color3.new(0, 0, 0)
  48. grab.Position = UDim2.new(0.0381504558, 0, 0.600263834, 0)
  49. grab.Size = UDim2.new(0, 128, 0, 31)
  50. grab.Font = Enum.Font.SciFi
  51. grab.Text = "Grab Coordinates"
  52. grab.TextColor3 = Color3.new(1, 1, 1)
  53. grab.TextSize = 14
  54.  
  55. copy.Name = "copy"
  56. copy.Parent = main
  57. copy.BackgroundColor3 = Color3.new(0, 0, 0)
  58. copy.Position = UDim2.new(0.697107434, 0, 0.595215261, 0)
  59. copy.Size = UDim2.new(0, 52, 0, 32)
  60. copy.Font = Enum.Font.SciFi
  61. copy.Text = "Copy"
  62. copy.TextColor3 = Color3.new(1, 1, 1)
  63. copy.TextSize = 14
  64.  
  65. cords.Name = "cords"
  66. cords.Parent = main
  67. cords.BackgroundColor3 = Color3.new(0, 0, 0)
  68. cords.Position = UDim2.new(0.0420129336, 0, 0.199266031, 0)
  69. cords.Size = UDim2.new(0, 194, 0, 37)
  70. cords.Font = Enum.Font.SciFi
  71. cords.Text = ""
  72. cords.TextColor3 = Color3.new(1, 1, 1)
  73. cords.TextSize = 14
  74. -- Scripts:
  75. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  76.  
  77. grab.MouseButton1Down:Connect(function()
  78. cords.Text = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  79. wait(0.25)
  80. print(''..tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position))
  81. end)
  82.  
  83. copy.MouseButton1Down:Connect(function()
  84. setclipboard(""..cords.Text)
  85. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement