Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local a = Instance.new("ScreenGui")
- local WayPointsFrame = Instance.new("Frame")
- local Name = Instance.new("TextLabel")
- local ShowLocation = Instance.new("TextLabel")
- local Copy = Instance.new("TextButton")
- local Close = Instance.new("TextButton")
- local Status = Instance.new("TextLabel")
- --Properties:
- a.Name = "a"
- a.Parent = game.CoreGui
- a.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- WayPointsFrame.Name = "WayPointsFrame "
- WayPointsFrame.Parent = a
- WayPointsFrame.Active = true
- WayPointsFrame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- WayPointsFrame.BorderSizePixel = 0
- WayPointsFrame.Position = UDim2.new(0.11105904, 0, 0.224539876, 0)
- WayPointsFrame.Size = UDim2.new(0, 314, 0, 188)
- WayPointsFrame.Draggable = true
- Name.Name = "Name"
- Name.Parent = WayPointsFrame
- Name.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
- Name.BorderSizePixel = 0
- Name.Size = UDim2.new(0, 313, 0, 29)
- Name.Font = Enum.Font.Cartoon
- Name.Text = "Show Location"
- Name.TextColor3 = Color3.new(1, 1, 1)
- Name.TextSize = 16
- ShowLocation.Name = "ShowLocation"
- ShowLocation.Parent = WayPointsFrame
- ShowLocation.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
- ShowLocation.BorderSizePixel = 0
- ShowLocation.Position = UDim2.new(0.122699387, 0, 0.265957445, 0)
- ShowLocation.Size = UDim2.new(0, 246, 0, 41)
- ShowLocation.Font = Enum.Font.Cartoon
- ShowLocation.Text = "Current Location "
- ShowLocation.TextColor3 = Color3.new(1, 1, 1)
- ShowLocation.TextSize = 16
- Copy.Name = "Copy"
- Copy.Parent = WayPointsFrame
- Copy.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
- Copy.BorderSizePixel = 0
- Copy.Position = UDim2.new(0.242331281, 0, 0.574468076, 0)
- Copy.Size = UDim2.new(0, 168, 0, 37)
- Copy.Font = Enum.Font.Cartoon
- Copy.Text = "Copy"
- Copy.TextColor3 = Color3.new(1, 1, 1)
- Copy.TextSize = 16
- Close.Name = "Close"
- Close.Parent = WayPointsFrame
- Close.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
- Close.BorderSizePixel = 0
- Close.Position = UDim2.new(0.932515323, 0, 0, 0)
- Close.Size = UDim2.new(0, 21, 0, 21)
- Close.Font = Enum.Font.SciFi
- Close.Text = "X"
- Close.TextColor3 = Color3.new(1, 1, 1)
- Close.TextSize = 14
- Close.MouseButton1Down:connect(function()
- a:Destroy()
- end)
- Status.Name = "Status"
- Status.Parent = WayPointsFrame
- Status.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
- Status.BackgroundTransparency = 1
- Status.BorderSizePixel = 0
- Status.Position = UDim2.new(0.297546029, 0, 0.861702144, 0)
- Status.Size = UDim2.new(0, 132, 0, 26)
- Status.Font = Enum.Font.Cartoon
- Status.Text = " Status : "
- Status.TextColor3 = Color3.new(1, 1, 1)
- Status.TextSize = 16
- Status.TextXAlignment = Enum.TextXAlignment.Left
- -- Scripts
- pausehumcheck = false
- function round(num, numDecimalPlaces)
- local mult = 10^(numDecimalPlaces or 0)
- return math.floor(num * mult + 0.5) / mult
- end
- -- Status
- local function setStatus(txt)
- Status.Text = " Status : "..txt
- end
- spawn (function()
- while true do
- if not pausehumcheck then
- local player = game:GetService'Players'.LocalPlayer
- local character = player.Character or player.CharacterAdded:wait()
- local head = character:WaitForChild'Head'
- local hum = player.Character.HumanoidRootPart
- LocationX = round(hum.Position.x, 1)
- LocationY = round(hum.Position.y, 1)
- LocationZ = round(hum.Position.z, 1)
- ShowLocation.Text = LocationX..", "..LocationY..", "..LocationZ
- end
- wait(0.5)
- end
- end)
- -- Copy Position
- Copy.MouseButton1Down:connect(function()
- toclipboard(ShowLocation.Text)
- print("Copied: " ..ShowLocation.Text)
- setStatus("Copied!")
- wait(2)
- setStatus("")
- end)
Advertisement
Add Comment
Please, Sign In to add comment