Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local FE_TheChosenOne = Instance.new("ScreenGui")
- local MainFrame = Instance.new("Frame")
- local UICorner = Instance.new("UICorner")
- local TopBar = Instance.new("Frame")
- local UICorner_2 = Instance.new("UICorner")
- local TextLabel = Instance.new("TextLabel")
- local CommandsFrame = Instance.new("Frame")
- local Command = Instance.new("Frame")
- local CheckMark = Instance.new("TextButton")
- local UICorner_3 = Instance.new("UICorner")
- local TextLabel_2 = Instance.new("TextLabel")
- local ExitButton = Instance.new("TextButton")
- --Properties:
- local Player = game.Players.LocalPlayer
- FE_TheChosenOne.Name = "FE_TheChosenOne"
- FE_TheChosenOne.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- FE_TheChosenOne.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = FE_TheChosenOne
- MainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
- MainFrame.Position = UDim2.new(0.257022947, 0, 0.210046858, 0)
- MainFrame.Size = UDim2.new(0.485436887, 0, 0.578034699, 0)
- UICorner.CornerRadius = UDim.new(0, 12)
- UICorner.Parent = MainFrame
- TopBar.Name = "TopBar"
- TopBar.Parent = MainFrame
- TopBar.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- TopBar.Size = UDim2.new(1, 0, 0.200000003, 0)
- UICorner_2.CornerRadius = UDim.new(0, 12)
- UICorner_2.Parent = TopBar
- TextLabel.Parent = TopBar
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Size = UDim2.new(1, 0, 1, 0)
- TextLabel.Font = Enum.Font.FredokaOne
- TextLabel.Text = "The chosen one script"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextSize = 41.000
- TextLabel.TextWrapped = true
- CommandsFrame.Name = "CommandsFrame"
- CommandsFrame.Parent = MainFrame
- CommandsFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- CommandsFrame.BackgroundTransparency = 1.000
- CommandsFrame.Position = UDim2.new(0, 0, 0.200000003, 0)
- CommandsFrame.Size = UDim2.new(1, 0, 0.800000012, 0)
- Command.Name = "Command"
- Command.Parent = CommandsFrame
- Command.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Command.BackgroundTransparency = 1.000
- Command.BorderColor3 = Color3.fromRGB(27, 42, 53)
- Command.Size = UDim2.new(1, 0, 0.1875, 0)
- CheckMark.Name = "CheckMark"
- CheckMark.Parent = Command
- CheckMark.BackgroundColor3 = Color3.fromRGB(255, 60, 60)
- CheckMark.Position = UDim2.new(0.0399999917, 0, 0.266666681, 0)
- CheckMark.Size = UDim2.new(0.0399999991, 0, 0.444444448, 0)
- CheckMark.Font = Enum.Font.SourceSans
- CheckMark.Text = ""
- CheckMark.TextColor3 = Color3.fromRGB(0, 0, 0)
- CheckMark.TextSize = 14.000
- UICorner_3.Parent = CheckMark
- TextLabel_2.Parent = Command
- TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.BackgroundTransparency = 1.000
- TextLabel_2.Position = UDim2.new(0.109999999, 0, 0.155555606, 0)
- TextLabel_2.Size = UDim2.new(0.850000024, 0, 0.666666746, 0)
- TextLabel_2.Font = Enum.Font.FredokaOne
- TextLabel_2.Text = "Auto Teleport to admin every 0.5 second."
- TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel_2.TextScaled = true
- TextLabel_2.TextSize = 14.000
- TextLabel_2.TextWrapped = true
- ExitButton.Name = "ExitButton"
- ExitButton.Parent = MainFrame
- ExitButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ExitButton.BackgroundTransparency = 1.000
- ExitButton.Position = UDim2.new(0.939999998, 0, 0, 0)
- ExitButton.Size = UDim2.new(0.0599999987, 0, 0.100000001, 0)
- ExitButton.Font = Enum.Font.Unknown
- ExitButton.Text = "X"
- ExitButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- ExitButton.TextScaled = true
- ExitButton.TextSize = 14.000
- ExitButton.TextWrapped = true
- local Enabled1 = false
- CheckMark.Activated:Connect(function()
- if Enabled1 == false then
- Enabled1 = true
- CheckMark.BackgroundColor3 = Color3.fromRGB(93, 255, 48)
- else
- Enabled1 = false
- CheckMark.BackgroundColor3 = Color3.fromRGB(255, 60, 60)
- end
- end)
- while wait(0.5) do
- local Admin
- for _, Plr:Player in pairs(game.Players:GetChildren()) do
- if Plr:IsA("Player") then
- if Plr.Character.Time.TextLabel.TextColor3 == Color3.new(245, 205, 48) then
- Admin = Plr
- end
- end
- end
- if Enabled1 == true then
- if Admin and Admin.Character and Admin.Character:FindFirstChild("HumanoidRootPart") then
- if Player.Character:FindFirstChild("HumanoidRootPart") then
- Player.Character:FindFirstChild("HumanoidRootPart").CFrame = Admin.Character:FindFirstChild("HumanoidRootPart").CFrame
- end
- end
- end
- end
Advertisement
Comments
-
- 1) it doesnt work btw
- 2) why r u skidding
- 3) cant even close the script after
- 4) stop skidding dude!!
Add Comment
Please, Sign In to add comment
Advertisement