Advertisement
Guest User

The chosen one hacks

a guest
Apr 22nd, 2024
1,388
-1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local FE_TheChosenOne = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local UICorner = Instance.new("UICorner")
  9. local TopBar = Instance.new("Frame")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local TextLabel = Instance.new("TextLabel")
  12. local CommandsFrame = Instance.new("Frame")
  13. local Command = Instance.new("Frame")
  14. local CheckMark = Instance.new("TextButton")
  15. local UICorner_3 = Instance.new("UICorner")
  16. local TextLabel_2 = Instance.new("TextLabel")
  17. local ExitButton = Instance.new("TextButton")
  18.  
  19. --Properties:
  20.  
  21. local Player = game.Players.LocalPlayer
  22.  
  23. FE_TheChosenOne.Name = "FE_TheChosenOne"
  24. FE_TheChosenOne.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  25. FE_TheChosenOne.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. MainFrame.Name = "MainFrame"
  28. MainFrame.Parent = FE_TheChosenOne
  29. MainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  30. MainFrame.Position = UDim2.new(0.257022947, 0, 0.210046858, 0)
  31. MainFrame.Size = UDim2.new(0.485436887, 0, 0.578034699, 0)
  32.  
  33. UICorner.CornerRadius = UDim.new(0, 12)
  34. UICorner.Parent = MainFrame
  35.  
  36. TopBar.Name = "TopBar"
  37. TopBar.Parent = MainFrame
  38. TopBar.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  39. TopBar.Size = UDim2.new(1, 0, 0.200000003, 0)
  40.  
  41. UICorner_2.CornerRadius = UDim.new(0, 12)
  42. UICorner_2.Parent = TopBar
  43.  
  44. TextLabel.Parent = TopBar
  45. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  46. TextLabel.BackgroundTransparency = 1.000
  47. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  48. TextLabel.Font = Enum.Font.FredokaOne
  49. TextLabel.Text = "The chosen one script"
  50. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. TextLabel.TextSize = 41.000
  52. TextLabel.TextWrapped = true
  53.  
  54. CommandsFrame.Name = "CommandsFrame"
  55. CommandsFrame.Parent = MainFrame
  56. CommandsFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  57. CommandsFrame.BackgroundTransparency = 1.000
  58. CommandsFrame.Position = UDim2.new(0, 0, 0.200000003, 0)
  59. CommandsFrame.Size = UDim2.new(1, 0, 0.800000012, 0)
  60.  
  61. Command.Name = "Command"
  62. Command.Parent = CommandsFrame
  63. Command.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  64. Command.BackgroundTransparency = 1.000
  65. Command.BorderColor3 = Color3.fromRGB(27, 42, 53)
  66. Command.Size = UDim2.new(1, 0, 0.1875, 0)
  67.  
  68. CheckMark.Name = "CheckMark"
  69. CheckMark.Parent = Command
  70. CheckMark.BackgroundColor3 = Color3.fromRGB(255, 60, 60)
  71. CheckMark.Position = UDim2.new(0.0399999917, 0, 0.266666681, 0)
  72. CheckMark.Size = UDim2.new(0.0399999991, 0, 0.444444448, 0)
  73. CheckMark.Font = Enum.Font.SourceSans
  74. CheckMark.Text = ""
  75. CheckMark.TextColor3 = Color3.fromRGB(0, 0, 0)
  76. CheckMark.TextSize = 14.000
  77.  
  78. UICorner_3.Parent = CheckMark
  79.  
  80. TextLabel_2.Parent = Command
  81. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  82. TextLabel_2.BackgroundTransparency = 1.000
  83. TextLabel_2.Position = UDim2.new(0.109999999, 0, 0.155555606, 0)
  84. TextLabel_2.Size = UDim2.new(0.850000024, 0, 0.666666746, 0)
  85. TextLabel_2.Font = Enum.Font.FredokaOne
  86. TextLabel_2.Text = "Auto Teleport to admin every 0.5 second."
  87. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  88. TextLabel_2.TextScaled = true
  89. TextLabel_2.TextSize = 14.000
  90. TextLabel_2.TextWrapped = true
  91.  
  92. ExitButton.Name = "ExitButton"
  93. ExitButton.Parent = MainFrame
  94. ExitButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  95. ExitButton.BackgroundTransparency = 1.000
  96. ExitButton.Position = UDim2.new(0.939999998, 0, 0, 0)
  97. ExitButton.Size = UDim2.new(0.0599999987, 0, 0.100000001, 0)
  98. ExitButton.Font = Enum.Font.Unknown
  99. ExitButton.Text = "X"
  100. ExitButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  101. ExitButton.TextScaled = true
  102. ExitButton.TextSize = 14.000
  103. ExitButton.TextWrapped = true
  104.  
  105.  
  106. local Enabled1 = false
  107. CheckMark.Activated:Connect(function()
  108.     if Enabled1 == false then
  109.         Enabled1 = true
  110.         CheckMark.BackgroundColor3 = Color3.fromRGB(93, 255, 48)
  111.     else
  112.         Enabled1 = false
  113.         CheckMark.BackgroundColor3 = Color3.fromRGB(255, 60, 60)
  114.     end
  115. end)
  116.  
  117. while wait(0.5) do
  118.     local Admin
  119.     for _, Plr:Player in pairs(game.Players:GetChildren()) do
  120.         if Plr:IsA("Player") then
  121.             if Plr.Character.Time.TextLabel.TextColor3 == Color3.new(245, 205, 48) then
  122.                 Admin = Plr
  123.             end
  124.         end
  125.     end
  126.     if Enabled1 == true then
  127.         if Admin and Admin.Character and Admin.Character:FindFirstChild("HumanoidRootPart") then
  128.             if Player.Character:FindFirstChild("HumanoidRootPart") then
  129.                 Player.Character:FindFirstChild("HumanoidRootPart").CFrame = Admin.Character:FindFirstChild("HumanoidRootPart").CFrame
  130.             end
  131.         end
  132.     end
  133. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement