1. -- GUI
  2. local Gui = Instance.new("ScreenGui")
  3. Gui.Name = "Executor"
  4. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  5.  
  6. local Frame = Instance.new("Frame")
  7. Frame.Size = UDim2.new(0, 350, 0, 420)
  8. Frame.Position = UDim2.new(0.5, -175, 0.5, -210)
  9. Frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  10. Frame.BorderSizePixel = 0
  11. Frame.Parent = Gui
  12.  
  13. local FrameCorner = Instance.new("UICorner")
  14. FrameCorner.CornerRadius = UDim.new(0, 12)
  15. FrameCorner.Parent = Frame
  16.  
  17. -- Code runner
  18. local CodeBox = Instance.new("TextBox")
  19. CodeBox.Size = UDim2.new(0, 300, 0, 200)
  20. CodeBox.Position = UDim2.new(0, 25, 0, 50)
  21. CodeBox.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  22. CodeBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  23. CodeBox.BorderSizePixel = 0
  24. CodeBox.MultiLine = true
  25. CodeBox.ClearTextOnFocus = false
  26. CodeBox.Parent = Frame
  27.  
  28. local CodeBoxCorner = Instance.new("UICorner")
  29. CodeBoxCorner.CornerRadius = UDim.new(0, 8)
  30. CodeBoxCorner.Parent = CodeBox
  31.  
  32. local ExecuteButton = Instance.new("TextButton")
  33. ExecuteButton.Size = UDim2.new(0, 100, 0, 40)
  34. ExecuteButton.Position = UDim2.new(0, 125, 0, 10)
  35. ExecuteButton.BackgroundColor3 = Color3.fromRGB(240, 60, 120)
  36. ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  37. ExecuteButton.Text = "Execute"
  38. ExecuteButton.BorderSizePixel = 0
  39. ExecuteButton.Parent = Frame
  40.  
  41. local ExecuteButtonCorner = Instance.new("UICorner")
  42. ExecuteButtonCorner.CornerRadius = UDim.new(0, 8)
  43. ExecuteButtonCorner.Parent = ExecuteButton
  44.  
  45. -- Flying button
  46. local FlyingButton = Instance.new("TextButton")
  47. FlyingButton.Size = UDim2.new(0, 100, 0, 40)
  48. FlyingButton.Position = UDim2.new(0, 10, 0, 270)
  49. FlyingButton.BackgroundColor3 = Color3.fromRGB(240, 60, 120)
  50. FlyingButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  51. FlyingButton.Text = "Fly"
  52. FlyingButton.BorderSizePixel = 0
  53. FlyingButton.Parent = Frame
  54.  
  55. local FlyingButtonCorner = Instance.new("UICorner")
  56. FlyingButtonCorner.CornerRadius = UDim.new(0, 8)
  57. FlyingButtonCorner.Parent = FlyingButton
  58.  
  59. -- Walk speed button
  60. local WalkSpeedButton = Instance.new("TextButton")
  61. WalkSpeedButton.Size = UDim2.new(0, 100, 0, 40)
  62. WalkSpeedButton.Position = UDim2.new(0, 120, 0, 270)
  63. WalkSpeedButton.BackgroundColor3 = Color3.fromRGB(240, 60, 120)
  64. WalkSpeedButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  65. WalkSpeedButton.Text = "Speed +"
  66. WalkSpeedButton.BorderSizePixel = 0
  67. WalkSpeedButton.Parent = Frame
  68.  
  69. local WalkSpeedButtonCorner = Instance.new("UICorner")
  70. WalkSpeedButtonCorner.CornerRadius = UDim.new(0, 8)
  71. WalkSpeedButtonCorner.Parent = WalkSpeedButton
  72.  
  73. -- Jump power button
  74. local JumpPowerButton = Instance.new("TextButton")
  75. JumpPowerButton.Size = UDim2.new(0, 100, 0, 40)
  76. JumpPowerButton.Position = UDim2.new(0, 230, 0, 270)
  77. JumpPowerButton.BackgroundColor3 = Color3.fromRGB(240, 60, 120)
  78. JumpPowerButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  79. JumpPowerButton.Text = "Jump +"
  80. JumpPowerButton.BorderSizePixel = 0
  81. JumpPowerButton.Parent = Frame
  82.  
  83. local JumpPowerButtonCorner = Instance.new("UICorner")
  84. JumpPowerButtonCorner.CornerRadius = UDim.new(0, 8)
  85. JumpPowerButtonCorner.Parent = JumpPowerButton
  86.  
  87. -- Kill all button
  88. local KillAllButton = Instance.new("TextButton")
  89. KillAllButton.Size = UDim2.new(0, 100, 0, 40)
  90. KillAllButton.Position = UDim2.new(0, 10, 0, 320)
  91. KillAllButton.BackgroundColor3 = Color3.fromRGB(240, 60, 120)
  92. KillAllButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  93. KillAllButton.Text = "Kill All"
  94. KillAllButton.BorderSizePixel = 0
  95. KillAllButton.Parent = Frame
  96.  
  97. local KillAllButtonCorner = Instance.new("UICorner")
  98. KillAllButtonCorner.CornerRadius = UDim.new(0, 8)
  99. KillAllButtonCorner.Parent = KillAllButton
  100.  
  101. -- Forcefield button
  102. local ForcefieldButton = Instance.new("TextButton")
  103. ForcefieldButton.Size = UDim2.new(0, 100, 0, 40)
  104. ForcefieldButton.Position = UDim2.new(0, 120, 0, 320)
  105. ForcefieldButton.BackgroundColor3 = Color3.fromRGB(240, 60, 120)
  106. ForcefieldButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  107. ForcefieldButton.Text = "Forcefield"
  108. ForcefieldButton.BorderSizePixel = 0
  109. ForcefieldButton.Parent = Frame
  110.  
  111. local ForcefieldButtonCorner = Instance.new("UICorner")
  112. ForcefieldButtonCorner.CornerRadius = UDim.new(0, 8)
  113. ForcefieldButtonCorner.Parent = ForcefieldButton
  114.  
  115. -- Search bar
  116. local SearchBar = Instance.new("TextBox")
  117. SearchBar.Size = UDim2.new(0, 180, 0, 40)
  118. SearchBar.Position = UDim2.new(0, 10, 0, 370)
  119. SearchBar.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  120. SearchBar.TextColor3 = Color3.fromRGB(255, 255, 255)
  121. SearchBar.BorderSizePixel = 0
  122. SearchBar.PlaceholderText = "Player Name"
  123. SearchBar.Parent = Frame
  124.  
  125. local SearchBarCorner = Instance.new("UICorner")
  126. SearchBarCorner.CornerRadius = UDim.new(0, 8)
  127. SearchBarCorner.Parent = SearchBar
  128.  
  129. -- Fling button
  130. local FlingButton = Instance.new("TextButton")
  131. FlingButton.Size = UDim2.new(0, 100, 0, 40)
  132. FlingButton.Position = UDim2.new(0, 200, 0, 370)
  133. FlingButton.BackgroundColor3 = Color3.fromRGB(240, 60, 120)
  134. FlingButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  135. FlingButton.Text = "Fling"
  136. FlingButton.BorderSizePixel = 0
  137. FlingButton.Parent = Frame
  138.  
  139. local FlingButtonCorner = Instance.new("UICorner")
  140. FlingButtonCorner.CornerRadius = UDim.new(0, 8)
  141. FlingButtonCorner.Parent = FlingButton
  142.  
  143. -- Functions
  144. local flying = false
  145. FlyingButton.MouseButton1Click:Connect(function()
  146. if flying then
  147. flying = false
  148. else
  149. flying = true
  150. while flying do
  151. game.Players.LocalPlayer.Character.HumanoidRootPart.Velocity = Vector3.new(0, 50, 0)
  152. wait(0.1)
  153. end
  154. end
  155. end)
  156.  
  157. local speed = 16
  158. WalkSpeedButton.MouseButton1Click:Connect(function()
  159. speed = speed + 10
  160. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = speed
  161. end)
  162.  
  163. local jumpPower = 50
  164. JumpPowerButton.MouseButton1Click:Connect(function()
  165. jumpPower = jumpPower + 10
  166. game.Players.LocalPlayer.Character.Humanoid.JumpPower = jumpPower
  167. end)
  168.  
  169. ExecuteButton.MouseButton1Click:Connect(function()
  170. loadstring(CodeBox.Text)()
  171. end)
  172.  
  173. KillAllButton.MouseButton1Click:Connect(function()
  174. for _, player in pairs(game.Players:GetPlayers()) do
  175. if player.Character and player.Character:FindFirstChild("Humanoid") then
  176. player.Character.Humanoid.Health = 0
  177. end
  178. end
  179. end)
  180.  
  181. local forcefield
  182. ForcefieldButton.MouseButton1Click:Connect(function()
  183. if game.Players.LocalPlayer.Character then
  184. if forcefield then
  185. forcefield:Destroy()
  186. forcefield = nil
  187. else
  188. forcefield = Instance.new("ForceField")
  189. forcefield.Parent = game.Players.LocalPlayer.Character
  190. end
  191. end
  192. end)
  193.  
  194. FlingButton.MouseButton1Click:Connect(function()
  195. local targetName = SearchBar.Text
  196. local targetPlayer = game.Players:FindFirstChild(targetName)
  197. if targetPlayer and targetPlayer.Character and targetPlayer.Character:FindFirstChild("HumanoidRootPart") then
  198. local target = targetPlayer.Character.HumanoidRootPart
  199. local myCharacter = game.Players.LocalPlayer.Character
  200. if myCharacter and myCharacter:FindFirstChild("HumanoidRootPart") then
  201. local myRoot = myCharacter.HumanoidRootPart
  202. target.Velocity = myRoot