Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Frame1 = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local UIGradient = Instance.new("UIGradient")
- local TextLabel_2 = Instance.new("TextLabel")
- local Teleport = Instance.new("TextButton")
- local TextBox = Instance.new("TextBox")
- local Close = Instance.new("ImageButton")
- local UIGradient_2 = Instance.new("UIGradient")
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.BorderSizePixel = 2
- Frame.Position = UDim2.new(0.0385470726, 0, 0.092187494, 0)
- Frame.Size = UDim2.new(0, 225, 0, 153)
- Frame1.Name = "Frame1"
- Frame1.Parent = Frame
- Frame1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame1.Size = UDim2.new(0, 225, 0, 18)
- TextLabel.Parent = Frame1
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.ClipsDescendants = true
- TextLabel.Position = UDim2.new(0.0933333337, 0, -0.0333333313, 0)
- TextLabel.Size = UDim2.new(0, 182, 0, 18)
- TextLabel.Font = Enum.Font.Creepster
- TextLabel.Text = "Teleport to player script"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 19.000
- TextLabel.TextWrapped = true
- UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(0, 0, 0)), ColorSequenceKeypoint.new(0.44, Color3.fromRGB(18, 18, 18)), ColorSequenceKeypoint.new(0.74, Color3.fromRGB(21, 21, 21)), ColorSequenceKeypoint.new(0.90, Color3.fromRGB(30, 30, 30)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(38, 38, 38))}
- UIGradient.Transparency = NumberSequence.new{NumberSequenceKeypoint.new(0.00, 0.12), NumberSequenceKeypoint.new(1.00, 0.12)}
- UIGradient.Parent = Frame1
- TextLabel_2.Parent = Frame
- TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.BackgroundTransparency = 1.000
- TextLabel_2.Position = UDim2.new(0.217777774, 0, 0.206342652, 0)
- TextLabel_2.Size = UDim2.new(0, 127, 0, 34)
- TextLabel_2.Font = Enum.Font.Creepster
- TextLabel_2.Text = "Player Name:"
- TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.TextScaled = true
- TextLabel_2.TextSize = 14.000
- TextLabel_2.TextStrokeTransparency = 0.000
- TextLabel_2.TextWrapped = true
- Teleport.Name = "Teleport"
- Teleport.Parent = Frame
- Teleport.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Teleport.BackgroundTransparency = 1.000
- Teleport.BorderSizePixel = 100
- Teleport.Position = UDim2.new(0.213333324, 0, 0.745098054, 0)
- Teleport.Size = UDim2.new(0, 128, 0, 32)
- Teleport.Font = Enum.Font.Creepster
- Teleport.Text = "Teleport"
- Teleport.TextColor3 = Color3.fromRGB(255, 255, 255)
- Teleport.TextScaled = true
- Teleport.TextSize = 30.000
- Teleport.TextStrokeTransparency = 0.000
- Teleport.TextWrapped = true
- TextBox.Parent = Frame
- TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextBox.BackgroundTransparency = 0.450
- TextBox.Position = UDim2.new(0.0933333337, 0, 0.470588237, 0)
- TextBox.Size = UDim2.new(0, 182, 0, 31)
- TextBox.Font = Enum.Font.FredokaOne
- TextBox.Text = ""
- TextBox.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextBox.TextScaled = true
- TextBox.TextSize = 14.000
- TextBox.TextWrapped = true
- Close.Name = "Close"
- Close.Parent = Frame
- Close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Close.BackgroundTransparency = 1.000
- Close.Position = UDim2.new(0.920000017, 0, -0.00653594779, 0)
- Close.Size = UDim2.new(0, 18, 0, 18)
- Close.Image = "rbxassetid://12354611575"
- UIGradient_2.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(29, 29, 29)), ColorSequenceKeypoint.new(0.18, Color3.fromRGB(38, 38, 38)), ColorSequenceKeypoint.new(0.47, Color3.fromRGB(58, 57, 57)), ColorSequenceKeypoint.new(0.68, Color3.fromRGB(70, 69, 69)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(90, 90, 90))}
- UIGradient_2.Transparency = NumberSequence.new{NumberSequenceKeypoint.new(0.00, 0.12), NumberSequenceKeypoint.new(1.00, 0.12)}
- UIGradient_2.Parent = Frame
- local function RBSSYU_fake_script() -- Frame1.LocalScript
- local script = Instance.new('LocalScript', Frame1)
- local UIS = game:GetService('UserInputService')
- local frame = script.Parent.Parent
- local dragToggle = nil
- local dragSpeed = 0.05
- local dragStart = nil
- local startPos = nil
- local function updateInput(input)
- local delta = input.Position - dragStart
- local position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X,
- startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- game:GetService('TweenService'):Create(frame, TweenInfo.new(dragSpeed), {Position = position}):Play()
- end
- frame.InputBegan:Connect(function(input)
- if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then
- dragToggle = true
- dragStart = input.Position
- startPos = frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then
- dragToggle = false
- end
- end)
- end
- end)
- UIS.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
- if dragToggle then
- updateInput(input)
- end
- end
- end)
- end
- coroutine.wrap(RBSSYU_fake_script)()
- local function LERNDIO_fake_script() -- TextBox.LocalScript
- local script = Instance.new('LocalScript', TextBox)
- local button = script.Parent.Parent.Teleport
- local function onButtonActivated()
- local ooooooof = script.Parent.Text
- local plr1 = game.Players.LocalPlayer.Character
- local plr2 = game.Workspace:FindFirstChild(ooooooof)
- plr1.HumanoidRootPart.CFrame = plr2.HumanoidRootPart.CFrame * CFrame.new(0,2,0)
- end
- button.Activated:Connect(onButtonActivated)
- end
- coroutine.wrap(LERNDIO_fake_script)()
- local function DPEIIPL_fake_script() -- Close.LocalScript
- local script = Instance.new('LocalScript', Close)
- local closebutton = script.Parent
- local Gui = script.Parent.Parent.Parent
- closebutton.MouseButton1Click:Connect(function()
- Gui.Enabled = false
- end)
- end
- coroutine.wrap(DPEIIPL_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement