Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- CUSTOM LOCATION FINDER!
- CREDIT TO Jmuse#3982 FOR SCRITPS!
- MADE BY JYNZ_L
- --]]
- -- Instances:
- local CustomLocationFinder = Instance.new("ScreenGui")
- local frame = Instance.new("ImageLabel")
- local LocationFind = Instance.new("TextButton")
- local ClipBoardSet = Instance.new("TextButton")
- local Remake = Instance.new("TextLabel")
- local LocationApper = Instance.new("TextLabel")
- local Credits = Instance.new("TextLabel")
- --Properties:
- CustomLocationFinder.Name = "CustomLocationFinder"
- CustomLocationFinder.Parent = game.CoreGui
- CustomLocationFinder.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- frame.Name = "frame"
- frame.Parent = CustomLocationFinder
- frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- frame.BackgroundTransparency = 1.000
- frame.Position = UDim2.new(-0.260657698, 0, -0.0139442235, 0)
- frame.Size = UDim2.new(0, 213, 0, 182)
- frame.Image = "rbxassetid://3570695787"
- frame.ImageColor3 = Color3.fromRGB(50, 50, 50)
- frame.ScaleType = Enum.ScaleType.Slice
- frame.SliceCenter = Rect.new(100, 100, 100, 100)
- frame.SliceScale = 0.120
- frame.Active = true
- frame.Draggable = true
- LocationFind.Name = "LocationFind"
- LocationFind.Parent = frame
- LocationFind.BackgroundColor3 = Color3.fromRGB(39, 39, 39)
- LocationFind.Position = UDim2.new(0, 0, 0.142857149, 0)
- LocationFind.Size = UDim2.new(0, 213, 0, 25)
- LocationFind.Font = Enum.Font.SourceSans
- LocationFind.Text = "Find Location"
- LocationFind.TextColor3 = Color3.fromRGB(255, 255, 255)
- LocationFind.TextScaled = true
- LocationFind.TextSize = 14.000
- LocationFind.TextWrapped = true
- LocationFind.MouseButton1Click:connect(function()
- LocationApper.Text = tostring(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
- end)
- ClipBoardSet.Name = "ClipBoardSet"
- ClipBoardSet.Parent = frame
- ClipBoardSet.BackgroundColor3 = Color3.fromRGB(39, 39, 39)
- ClipBoardSet.Position = UDim2.new(0, 0, 0.67032975, 0)
- ClipBoardSet.Size = UDim2.new(0, 213, 0, 25)
- ClipBoardSet.Font = Enum.Font.SourceSans
- ClipBoardSet.Text = "Set to Clipboard"
- ClipBoardSet.TextColor3 = Color3.fromRGB(255, 255, 255)
- ClipBoardSet.TextScaled = true
- ClipBoardSet.TextSize = 14.000
- ClipBoardSet.TextWrapped = true
- ClipBoardSet.MouseButton1Click:connect(function()
- setclipboard("game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new("..LocationApper.Text..")")
- end)
- Remake.Name = "Remake"
- Remake.Parent = frame
- Remake.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Remake.BackgroundTransparency = 1.000
- Remake.Position = UDim2.new(0.0281690136, 0, -0.170329675, 0)
- Remake.Size = UDim2.new(0, 200, 0, 31)
- Remake.Font = Enum.Font.SourceSans
- Remake.Text = "Remaked by jynz_l"
- Remake.TextColor3 = Color3.fromRGB(0, 0, 0)
- Remake.TextScaled = true
- Remake.TextSize = 14.000
- Remake.TextWrapped = true
- LocationApper.Name = "LocationApper"
- LocationApper.Parent = frame
- LocationApper.BackgroundColor3 = Color3.fromRGB(39, 39, 39)
- LocationApper.BorderColor3 = Color3.fromRGB(39, 39, 39)
- LocationApper.Position = UDim2.new(0, 0, 0.34065935, 0)
- LocationApper.Size = UDim2.new(0, 213, 0, 39)
- LocationApper.Font = Enum.Font.SourceSans
- LocationApper.Text = "-LocationApperHere-"
- LocationApper.TextColor3 = Color3.fromRGB(255, 255, 255)
- LocationApper.TextScaled = true
- LocationApper.TextSize = 14.000
- LocationApper.TextWrapped = true
- Credits.Name = "Credits"
- Credits.Parent = frame
- Credits.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Credits.BackgroundTransparency = 1.000
- Credits.Position = UDim2.new(0.0281690136, 0, -0.379120886, 0)
- Credits.Size = UDim2.new(0, 200, 0, 45)
- Credits.Font = Enum.Font.SourceSans
- Credits.Text = "Credit to Jmuse#3982 For the scripts!"
- Credits.TextColor3 = Color3.fromRGB(0, 0, 0)
- Credits.TextScaled = true
- Credits.TextSize = 14.000
- Credits.TextWrapped = true
- -- Scripts:
- local function ZMHPO_fake_script() -- CustomLocationFinder.LocalScript
- local script = Instance.new('LocalScript', CustomLocationFinder)
- local frame = script.Parent.frame
- wait(2) -- give custom seconds
- frame:TweenPosition(UDim2.new(0.713, 0,0.592, 0), "Out", "Elastic", 1.5)
- end
- coroutine.wrap(ZMHPO_fake_script)()
Advertisement
RAW Paste Data
Copied
Advertisement