Advertisement
Guest User

cords

a guest
Apr 24th, 2019
892
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.59 KB | None | 0 0
  1. print("Made By Owl#4891")
  2. local GetCordsGUI = Instance.new("ScreenGui")
  3. local MainFramexd = Instance.new("Frame")
  4. local Name = Instance.new("TextLabel")
  5. local Frame = Instance.new("Frame")
  6. local PrintCordsBTN = Instance.new("TextButton")
  7. local CopyCordsBTN = Instance.new("TextButton")
  8. --Properties:
  9. GetCordsGUI.Name = "Get Cords GUI"
  10. GetCordsGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11.  
  12. MainFramexd.Name = "MainFramexd"
  13. MainFramexd.Parent = GetCordsGUI
  14. MainFramexd.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  15. MainFramexd.BackgroundTransparency = 0.55000001192093
  16. MainFramexd.BorderSizePixel = 0
  17. MainFramexd.Position = UDim2.new(0.0173046663, 0, 0.430594891, 0)
  18. MainFramexd.Size = UDim2.new(0, 270, 0, 169)
  19. MainFramexd.Draggable = true
  20.  
  21. Name.Name = "Name"
  22. Name.Parent = MainFramexd
  23. Name.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Name.BackgroundTransparency = 1
  25. Name.Size = UDim2.new(0, 270, 0, 41)
  26. Name.Font = Enum.Font.Cartoon
  27. Name.Text = "Cords Gui By Owl"
  28. Name.TextColor3 = Color3.new(0, 0, 0)
  29. Name.TextScaled = true
  30. Name.TextSize = 14
  31. Name.TextWrapped = true
  32.  
  33. Frame.Parent = MainFramexd
  34. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  35. Frame.BorderSizePixel = 0
  36. Frame.Position = UDim2.new(0, 0, 0.270035058, 0)
  37. Frame.Size = UDim2.new(0, 270, 0, 6)
  38.  
  39. PrintCordsBTN.Name = "PrintCordsBTN"
  40. PrintCordsBTN.Parent = MainFramexd
  41. PrintCordsBTN.BackgroundColor3 = Color3.new(1, 1, 1)
  42. PrintCordsBTN.Position = UDim2.new(0, 0, 0.346498549, 0)
  43. PrintCordsBTN.Size = UDim2.new(0, 270, 0, 50)
  44. PrintCordsBTN.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  45. PrintCordsBTN.Font = Enum.Font.Cartoon
  46. PrintCordsBTN.Text = "Print Cords"
  47. PrintCordsBTN.TextColor3 = Color3.new(0, 0, 0)
  48. PrintCordsBTN.TextScaled = true
  49. PrintCordsBTN.TextSize = 14
  50. PrintCordsBTN.TextWrapped = true
  51.  
  52. CopyCordsBTN.Name = "CopyCordsBTN"
  53. CopyCordsBTN.Parent = MainFramexd
  54. CopyCordsBTN.BackgroundColor3 = Color3.new(1, 1, 1)
  55. CopyCordsBTN.Position = UDim2.new(0, 0, 0.638710737, 0)
  56. CopyCordsBTN.Size = UDim2.new(0, 270, 0, 50)
  57. CopyCordsBTN.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  58. CopyCordsBTN.Font = Enum.Font.Cartoon
  59. CopyCordsBTN.Text = "Copy Cords"
  60. CopyCordsBTN.TextColor3 = Color3.new(0, 0, 0)
  61. CopyCordsBTN.TextScaled = true
  62. CopyCordsBTN.TextSize = 14
  63. CopyCordsBTN.TextWrapped = true
  64. -- Scripts:
  65.  
  66. PrintCordsBTN.MouseButton1Click:connect(function()
  67. local cords = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  68. print (cords)
  69. end)
  70.  
  71. CopyCordsBTN.MouseButton1Click:connect(function()
  72. setclipboard(tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position))
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement