Advertisement
Bennysparky0819

ROBLOX - Simple Coordinate Reader

Jul 16th, 2022
1,840
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.06 KB | None | 0 0
  1. local Coords_Reader = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local coords = Instance.new("TextLabel")
  4. local destroy = Instance.new("TextButton")
  5.  
  6.  
  7. Coords_Reader.Name = "Coords_Reader"
  8. Coords_Reader.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9.  
  10. Frame.Parent = Coords_Reader
  11. Frame.BackgroundColor3 = Color3.fromRGB(10, 10, 1)
  12. Frame.BackgroundTransparency = 0.500
  13. Frame.BorderColor3 = Color3.fromRGB(0, 0, 0)
  14. Frame.Position = UDim2.new(0.853262007, 0, 0.38668555, 0)
  15. Frame.Size = UDim2.new(0, 209, 0, 36)
  16.  
  17. coords.Name = "coords"
  18. coords.Parent = Frame
  19. coords.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  20. coords.BackgroundTransparency = 1.000
  21. coords.Position = UDim2.new(0, 0, 8.4771051e-07, 0)
  22. coords.Size = UDim2.new(0, 206, 0, 37)
  23. coords.Font = Enum.Font.Gotham
  24. coords.Text = "nil, nil, nil"
  25. coords.TextColor3 = Color3.fromRGB(30, 30, 30)
  26. coords.TextScaled = true
  27. coords.TextSize = 14.000
  28. coords.TextWrapped = true
  29.  
  30. destroy.Name = "destroy"
  31. destroy.Parent = Frame
  32. destroy.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  33. destroy.BorderColor3 = Color3.fromRGB(50, 50, 50)
  34. destroy.BorderSizePixel = 0
  35. destroy.Position = UDim2.new(0.749392092, 0, -0.474110842, 0)
  36. destroy.Size = UDim2.new(0, 52, 0, 17)
  37. destroy.Font = Enum.Font.GothamBold
  38. destroy.Text = "Destroy"
  39. destroy.TextColor3 = Color3.fromRGB(255, 255, 255)
  40. destroy.TextSize = 12.000
  41.  
  42. local function BODAQQ_fake_script() -- coords.LocalScript
  43.     local script = Instance.new('LocalScript', coords)
  44.  
  45.    
  46.    
  47.     while true do
  48.         local coords = game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart").Position
  49.         script.Parent.Text = tostring(tonumber(math.ceil(coords.X))..","..tonumber(math.ceil(coords.Y))..","..tonumber(math.ceil(coords.Z)))
  50.         wait(0.1)
  51.     end
  52. end
  53. coroutine.wrap(BODAQQ_fake_script)()
  54. local function UWOGEZ_fake_script() -- destroy.LocalScript
  55.     local script = Instance.new('LocalScript', destroy)
  56.  
  57.     script.Parent.MouseButton1Click:Connect(function()
  58.         script.Parent.Parent.Parent:Destroy()
  59.     end)
  60. end
  61. coroutine.wrap(UWOGEZ_fake_script)()
  62.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement