Dark_Agent

System Broken Chat fix script?

Nov 24th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 137.54 KB | None | 0 0
  1. --RELOAD GUI
  2. if game.CoreGui:FindFirstChild("SysBroker") then
  3.     game:GetService("StarterGui"):SetCore("SendNotification", {Title = "System Broken",Text = "GUI Already loaded, rejoin to re-execute",Duration = 5;})
  4.     return
  5. end
  6. local version = 2
  7. --VARIABLES
  8. _G.AntiFlingToggled = false
  9. local Players = game:GetService("Players")
  10. local plr = Players.LocalPlayer
  11. local TweenService = game:GetService("TweenService")
  12. local RunService = game:GetService("RunService")
  13. local Light = game:GetService("Lighting")
  14. local HttpService = game:GetService("HttpService")
  15. local httprequest = (syn and syn.request) or (http and http.request) or http_request or (fluxus and fluxus.request) or request
  16. local mouse = plr:GetMouse()
  17. local ScriptWhitelist = {}
  18. local ForceWhitelist = {}
  19. local TargetedPlayer = nil
  20. local FlySpeed = 50
  21. local PotionTool = nil
  22. local SavedCheckpoint = nil
  23. local MinesFolder = nil
  24. local FreeEmotesEnabled = false
  25. local CannonsFolders = {}
  26. local TextChatService = cloneref(game:GetService("TextChatService"))
  27. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  28. local isLegacyChat = TextChatService.ChatVersion == Enum.ChatVersion.LegacyChatService
  29.  
  30. pcall(function()
  31.     MinesFolder = game:GetService("Workspace").Landmines
  32.     for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  33.         if v.Name == "Cannons" then
  34.             table.insert(CannonsFolders, v)
  35.         end
  36.     end
  37. end)
  38. --FUNCTIONS
  39. _G.shield = function(id)
  40.     if not table.find(ForceWhitelist,id) then
  41.         table.insert(ForceWhitelist, id)
  42.     end
  43. end
  44.  
  45. local function RandomChar()
  46.     local length = math.random(1,5)
  47.     local array = {}
  48.     for i = 1, length do
  49.         array[i] = string.char(math.random(32, 126))
  50.     end
  51.     return table.concat(array)
  52. end
  53.  
  54. local function ChangeToggleColor(Button)
  55.     led = Button.Ticket_Asset
  56.     if led.ImageColor3 == Color3.fromRGB(255, 0, 0) then
  57.         led.ImageColor3 = Color3.fromRGB(0, 255, 0)
  58.     else
  59.         led.ImageColor3 = Color3.fromRGB(255, 0, 0)
  60.     end
  61. end
  62.  
  63. local function GetPing()
  64.     return (game:GetService("Stats").Network.ServerStatsItem["Data Ping"]:GetValue())/1000
  65. end
  66.  
  67. local function GetPlayer(UserDisplay)
  68.     if UserDisplay ~= "" then
  69.         for i,v in pairs(Players:GetPlayers()) do
  70.             if v.Name:lower():match(UserDisplay) or v.DisplayName:lower():match(UserDisplay) then
  71.                 return v
  72.             end
  73.         end
  74.         return nil
  75.     else
  76.         return nil
  77.     end
  78. end
  79.  
  80. local function GetCharacter(Player)
  81.     if Player.Character then
  82.         return Player.Character
  83.     end
  84. end
  85.  
  86. local function GetRoot(Player)
  87.     if GetCharacter(Player):FindFirstChild("HumanoidRootPart") then
  88.         return GetCharacter(Player).HumanoidRootPart
  89.     end
  90. end
  91.  
  92. local function TeleportTO(posX,posY,posZ,player,method)
  93.     pcall(function()
  94.         if method == "safe" then
  95.             task.spawn(function()
  96.                 for i = 1,30 do
  97.                     task.wait()
  98.                     GetRoot(plr).Velocity = Vector3.new(0,0,0)
  99.                     if player == "pos" then
  100.                         GetRoot(plr).CFrame = CFrame.new(posX,posY,posZ)
  101.                     else
  102.                         GetRoot(plr).CFrame = CFrame.new(GetRoot(player).Position)+Vector3.new(0,2,0)
  103.                     end
  104.                 end
  105.             end)
  106.         else
  107.             GetRoot(plr).Velocity = Vector3.new(0,0,0)
  108.             if player == "pos" then
  109.                 GetRoot(plr).CFrame = CFrame.new(posX,posY,posZ)
  110.             else
  111.                 GetRoot(plr).CFrame = CFrame.new(GetRoot(player).Position)+Vector3.new(0,2,0)
  112.             end
  113.         end
  114.     end)
  115. end
  116.  
  117. local function PredictionTP(player,method)
  118.     local root = GetRoot(player)
  119.     local pos = root.Position
  120.     local vel = root.Velocity
  121.     GetRoot(plr).CFrame = CFrame.new((pos.X)+(vel.X)*(GetPing()*3.5),(pos.Y)+(vel.Y)*(GetPing()*2),(pos.Z)+(vel.Z)*(GetPing()*3.5))
  122.     if method == "safe" then
  123.         task.wait()
  124.         GetRoot(plr).CFrame = CFrame.new(pos)
  125.         task.wait()
  126.         GetRoot(plr).CFrame = CFrame.new((pos.X)+(vel.X)*(GetPing()*3.5),(pos.Y)+(vel.Y)*(GetPing()*2),(pos.Z)+(vel.Z)*(GetPing()*3.5))
  127.     end
  128. end
  129.  
  130. local function Touch(x,root)
  131.     pcall(function()
  132.         x = x:FindFirstAncestorWhichIsA("Part")
  133.         if x then
  134.             if firetouchinterest then
  135.                 task.spawn(function()
  136.                     firetouchinterest(x, root, 1)
  137.                     task.wait()
  138.                     firetouchinterest(x, root, 0)
  139.                 end)
  140.             end
  141.         end
  142.     end)
  143. end
  144.  
  145.  
  146. local function GetPush()
  147.     local TempPush = nil
  148.     pcall(function()
  149.         if plr.Backpack:FindFirstChild("Push") then
  150.             PushTool = plr.Backpack.Push
  151.             PushTool.Parent = plr.Character
  152.             TempPush = PushTool
  153.         end
  154.         for i,v in pairs(Players:GetPlayers()) do
  155.             if v.Character:FindFirstChild("Push") then
  156.                 TempPush = v.Character.Push
  157.             end
  158.         end
  159.     end)
  160.     return TempPush
  161. end
  162.  
  163. local function CheckPotion()
  164.     if plr.Backpack:FindFirstChild("potion") then
  165.         PotionTool = plr.Backpack:FindFirstChild("potion")
  166.         return true
  167.     elseif plr.Character:FindFirstChild("potion") then
  168.         PotionTool = plr.Character:FindFirstChild("potion")
  169.         return true
  170.     else
  171.         return false
  172.     end
  173. end
  174.  
  175. local function Push(Target)
  176.     local Push = GetPush()
  177.     local FixTool = nil
  178.     if Push ~= nil then
  179.         local args = {[1] = Target.Character}
  180.         GetPush().PushTool:FireServer(unpack(args))
  181.     end
  182.     if plr.Character:FindFirstChild("Push") then
  183.         plr.Character.Push.Parent = plr.Backpack
  184.     end
  185.     if plr.Character:FindFirstChild("ModdedPush") then
  186.         FixTool = plr.Character:FindFirstChild("ModdedPush")
  187.         FixTool.Parent = plr.Backpack
  188.         FixTool.Parent = plr.Character
  189.     end
  190.     if plr.Character:FindFirstChild("ClickTarget") then
  191.         FixTool = plr.Character:FindFirstChild("ClickTarget")
  192.         FixTool.Parent = plr.Backpack
  193.         FixTool.Parent = plr.Character
  194.     end
  195.     if plr.Character:FindFirstChild("potion") then
  196.         FixTool = plr.Character:FindFirstChild("potion")
  197.         FixTool.Parent = plr.Backpack
  198.         FixTool.Parent = plr.Character
  199.     end
  200. end
  201.  
  202. local function ToggleRagdoll(bool)
  203.     pcall(function()
  204.         plr.Character["Falling down"].Disabled = bool
  205.         plr.Character["Swimming"].Disabled = bool
  206.         plr.Character["StartRagdoll"].Disabled = bool
  207.         plr.Character["Pushed"].Disabled = bool
  208.         plr.Character["RagdollMe"].Disabled = bool
  209.     end)
  210. end
  211.  
  212. local function ToggleVoidProtection(bool)
  213.     if bool then
  214.         game.Workspace.FallenPartsDestroyHeight = 0/0
  215.     else
  216.         game.Workspace.FallenPartsDestroyHeight = -500
  217.     end
  218. end
  219.  
  220. local function PlayAnim(id,time,speed)
  221.     pcall(function()
  222.         plr.Character.Animate.Disabled = false
  223.         local hum = plr.Character.Humanoid
  224.         local animtrack = hum:GetPlayingAnimationTracks()
  225.         for i,track in pairs(animtrack) do
  226.             track:Stop()
  227.         end
  228.         plr.Character.Animate.Disabled = true
  229.         local Anim = Instance.new("Animation")
  230.         Anim.AnimationId = "rbxassetid://"..id
  231.         local loadanim = hum:LoadAnimation(Anim)
  232.         loadanim:Play()
  233.         loadanim.TimePosition = time
  234.         loadanim:AdjustSpeed(speed)
  235.         loadanim.Stopped:Connect(function()
  236.             plr.Character.Animate.Disabled = false
  237.             for i, track in pairs (animtrack) do
  238.                 track:Stop()
  239.             end
  240.         end)
  241.     end)
  242. end
  243.  
  244. local function StopAnim()
  245.     plr.Character.Animate.Disabled = false
  246.     local animtrack = plr.Character.Humanoid:GetPlayingAnimationTracks()
  247.     for i, track in pairs (animtrack) do
  248.         track:Stop()
  249.     end
  250. end
  251.  
  252. local function SendNotify(title, message, duration)
  253.     game:GetService("StarterGui"):SetCore("SendNotification", {Title = title,Text = message,Duration = duration;})
  254. end
  255.  
  256. --LOAD GUI
  257. task.wait(0.1)
  258. local SysBroker = Instance.new("ScreenGui")
  259. local Background = Instance.new("ImageLabel")
  260. local TitleBarLabel = Instance.new("TextLabel")
  261. local SectionList = Instance.new("Frame")
  262. local Home_Section_Button = Instance.new("TextButton")
  263. local Game_Section_Button = Instance.new("TextButton")
  264. local Character_Section_Button = Instance.new("TextButton")
  265. local Target_Section_Button = Instance.new("TextButton")
  266. local Animations_Section_Button = Instance.new("TextButton")
  267. local Misc_Section_Button = Instance.new("TextButton")
  268. local Credits_Section_Button = Instance.new("TextButton")
  269. local Game_Section = Instance.new("ScrollingFrame")
  270. local AntiRagdoll_Button = Instance.new("TextButton")
  271. local PotionFling_Button = Instance.new("TextButton")
  272. local SpamMines_Button = Instance.new("TextButton")
  273. local PushAura_Button = Instance.new("TextButton")
  274. local BreakCannons_Button = Instance.new("TextButton")
  275. local LethalCannons_Button = Instance.new("TextButton")
  276. local ChatAlert_Button = Instance.new("TextButton")
  277. local PotionDi_Button = Instance.new("TextButton")
  278. local VoidProtection_Button = Instance.new("TextButton")
  279. local PushAll_Button = Instance.new("TextButton")
  280. local TouchFling_Button = Instance.new("TextButton")
  281. local CMDBar = Instance.new("TextBox")
  282. local CannonTP1_Button = Instance.new("TextButton")
  283. local CannonTP2_Button = Instance.new("TextButton")
  284. local CannonTP3_Button = Instance.new("TextButton")
  285. local MinefieldTP_Button = Instance.new("TextButton")
  286. local BallonTP_Button = Instance.new("TextButton")
  287. local NormalStairsTP_Button = Instance.new("TextButton")
  288. local MovingStairsTP_Button = Instance.new("TextButton")
  289. local SpiralStairsTP_Button = Instance.new("TextButton")
  290. local SkyscraperTP_Button = Instance.new("TextButton")
  291. local PoolTP_Button = Instance.new("TextButton")
  292. local FreePushTool_Button = Instance.new("TextButton")
  293. local Home_Section = Instance.new("ScrollingFrame")
  294. local Profile_Image = Instance.new("ImageLabel")
  295. local Welcome_Label = Instance.new("TextLabel")
  296. local Announce_Label = Instance.new("TextLabel")
  297. local Character_Section = Instance.new("ScrollingFrame")
  298. local WalkSpeed_Button = Instance.new("TextButton")
  299. local WalkSpeed_Input = Instance.new("TextBox")
  300. local ClearCheckpoint_Button = Instance.new("TextButton")
  301. local JumpPower_Input = Instance.new("TextBox")
  302. local JumpPower_Button = Instance.new("TextButton")
  303. local SaveCheckpoint_Button = Instance.new("TextButton")
  304. local Respawn_Button = Instance.new("TextButton")
  305. local FlySpeed_Button = Instance.new("TextButton")
  306. local FlySpeed_Input = Instance.new("TextBox")
  307. local Fly_Button = Instance.new("TextButton")
  308. local Target_Section = Instance.new("ScrollingFrame")
  309. local TargetImage = Instance.new("ImageLabel")
  310. local ClickTargetTool_Button = Instance.new("ImageButton")
  311. local TargetName_Input = Instance.new("TextBox")
  312. local UserIDTargetLabel = Instance.new("TextLabel")
  313. local ViewTarget_Button = Instance.new("TextButton")
  314. local FlingTarget_Button = Instance.new("TextButton")
  315. local FocusTarget_Button = Instance.new("TextButton")
  316. local BenxTarget_Button = Instance.new("TextButton")
  317. local PushTarget_Button = Instance.new("TextButton")
  318. local WhitelistTarget_Button = Instance.new("TextButton")
  319. local TeleportTarget_Button = Instance.new("TextButton")
  320. local HeadsitTarget_Button = Instance.new("TextButton")
  321. local StandTarget_Button = Instance.new("TextButton")
  322. local BackpackTarget_Button = Instance.new("TextButton")
  323. local DoggyTarget_Button = Instance.new("TextButton")
  324. local DragTarget_Button = Instance.new("TextButton")
  325. local Animations_Section = Instance.new("ScrollingFrame")
  326. local VampireAnim_Button = Instance.new("TextButton")
  327. local HeroAnim_Button = Instance.new("TextButton")
  328. local ZombieClassicAnim_Button = Instance.new("TextButton")
  329. local MageAnim_Button = Instance.new("TextButton")
  330. local GhostAnim_Button = Instance.new("TextButton")
  331. local ElderAnim_Button = Instance.new("TextButton")
  332. local LevitationAnim_Button = Instance.new("TextButton")
  333. local AstronautAnim_Button = Instance.new("TextButton")
  334. local NinjaAnim_Button = Instance.new("TextButton")
  335. local WerewolfAnim_Button = Instance.new("TextButton")
  336. local CartoonAnim_Button = Instance.new("TextButton")
  337. local PirateAnim_Button = Instance.new("TextButton")
  338. local SneakyAnim_Button = Instance.new("TextButton")
  339. local ToyAnim_Button = Instance.new("TextButton")
  340. local KnightAnim_Button = Instance.new("TextButton")
  341. --NEWS
  342. local ConfidentAnim_Button = Instance.new("TextButton")
  343. local PopstarAnim_Button = Instance.new("TextButton")
  344. local PrincessAnim_Button = Instance.new("TextButton")
  345. local CowboyAnim_Button = Instance.new("TextButton")
  346. local PatrolAnim_Button = Instance.new("TextButton")
  347. local ZombieFEAnim_Button = Instance.new("TextButton")
  348. --NEWS
  349. local Misc_Section = Instance.new("ScrollingFrame")
  350. local AntiFling_Button = Instance.new("TextButton")
  351. local AntiChatSpy_Button = Instance.new("TextButton")
  352. local AntiAFK_Button = Instance.new("TextButton")
  353. local Shaders_Button = Instance.new("TextButton")
  354. local Day_Button = Instance.new("TextButton")
  355. local Night_Button = Instance.new("TextButton")
  356. local Rejoin_Button = Instance.new("TextButton")
  357. local CMDX_Button = Instance.new("TextButton")
  358. local InfYield_Button = Instance.new("TextButton")
  359. local Serverhop_Button = Instance.new("TextButton")
  360. local Explode_Button = Instance.new("TextButton")
  361. local FreeEmotes_Button = Instance.new("TextButton")
  362. local ChatBox_Input = Instance.new("TextBox")
  363. local Credits_Section = Instance.new("ScrollingFrame")
  364. local Credits_Label = Instance.new("TextLabel")
  365. local Crown = Instance.new("ImageLabel")
  366. local Assets = Instance.new("Folder")
  367. local Ticket_Asset = Instance.new("ImageButton")
  368. local Click_Asset = Instance.new("ImageButton")
  369. local Velocity_Asset = Instance.new("BodyAngularVelocity")
  370. local Fly_Pad = Instance.new("ImageButton")
  371. local UIGradient = Instance.new("UIGradient")
  372. local FlyAButton = Instance.new("TextButton")
  373. local FlyDButton = Instance.new("TextButton")
  374. local FlyWButton = Instance.new("TextButton")
  375. local FlySButton = Instance.new("TextButton")
  376. local OpenClose = Instance.new("ImageButton")
  377. local UICornerOC = Instance.new("UICorner")
  378.  
  379. local function CreateToggle(Button)
  380.     local NewToggle = Ticket_Asset:Clone()
  381.     NewToggle.Parent = Button
  382. end
  383.  
  384. local function CreateClicker(Button)
  385.     local NewClicker = Click_Asset:Clone()
  386.     NewClicker.Parent = Button
  387. end
  388.  
  389. SysBroker.Name = "SysBroker"
  390. SysBroker.Parent = game.CoreGui
  391. SysBroker.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  392.  
  393. Background.Name = "Background"
  394. Background.Parent = SysBroker
  395. Background.AnchorPoint = Vector2.new(0.5, 0.5)
  396. Background.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  397. Background.BorderColor3 = Color3.fromRGB(0, 255, 255)
  398. Background.Position = UDim2.new(0.5, 0, 0.5, 0)
  399. Background.Size = UDim2.new(0, 500, 0, 350)
  400. Background.ZIndex = 9
  401. Background.Image = "rbxassetid://159991693"
  402. Background.ImageColor3 = Color3.fromRGB(0, 255, 255)
  403. Background.ImageTransparency = 0.600
  404. Background.ScaleType = Enum.ScaleType.Tile
  405. Background.SliceCenter = Rect.new(0, 256, 0, 256)
  406. Background.TileSize = UDim2.new(0, 30, 0, 30)
  407. Background.Active = true
  408. Background.Draggable = true
  409.  
  410. TitleBarLabel.Name = "TitleBarLabel"
  411. TitleBarLabel.Parent = Background
  412. TitleBarLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  413. TitleBarLabel.BackgroundTransparency = 0.250
  414. TitleBarLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  415. TitleBarLabel.BorderSizePixel = 0
  416. TitleBarLabel.Size = UDim2.new(1, 0, 0, 30)
  417. TitleBarLabel.Font = Enum.Font.Unknown
  418. TitleBarLabel.Text = "____/SYSTEMBROKEN\\___"
  419. TitleBarLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
  420. TitleBarLabel.TextScaled = true
  421. TitleBarLabel.TextSize = 14.000
  422. TitleBarLabel.TextWrapped = true
  423. TitleBarLabel.TextXAlignment = Enum.TextXAlignment.Left
  424.  
  425. SectionList.Name = "SectionList"
  426. SectionList.Parent = Background
  427. SectionList.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  428. SectionList.BackgroundTransparency = 0.500
  429. SectionList.BorderColor3 = Color3.fromRGB(0, 0, 0)
  430. SectionList.BorderSizePixel = 0
  431. SectionList.Position = UDim2.new(0, 0, 0, 30)
  432. SectionList.Size = UDim2.new(0, 105, 0, 320)
  433.  
  434. Home_Section_Button.Name = "Home_Section_Button"
  435. Home_Section_Button.Parent = SectionList
  436. Home_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  437. Home_Section_Button.BackgroundTransparency = 0.500
  438. Home_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  439. Home_Section_Button.BorderSizePixel = 0
  440. Home_Section_Button.Position = UDim2.new(0, 0, 0, 25)
  441. Home_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  442. Home_Section_Button.Font = Enum.Font.Oswald
  443. Home_Section_Button.Text = "Home"
  444. Home_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  445. Home_Section_Button.TextScaled = true
  446. Home_Section_Button.TextSize = 14.000
  447. Home_Section_Button.TextWrapped = true
  448.  
  449. Game_Section_Button.Name = "Game_Section_Button"
  450. Game_Section_Button.Parent = SectionList
  451. Game_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  452. Game_Section_Button.BackgroundTransparency = 0.500
  453. Game_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  454. Game_Section_Button.BorderSizePixel = 0
  455. Game_Section_Button.Position = UDim2.new(0, 0, 0, 65)
  456. Game_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  457. Game_Section_Button.Font = Enum.Font.Oswald
  458. Game_Section_Button.Text = "Game"
  459. Game_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  460. Game_Section_Button.TextScaled = true
  461. Game_Section_Button.TextSize = 14.000
  462. Game_Section_Button.TextWrapped = true
  463.  
  464. Character_Section_Button.Name = "Character_Section_Button"
  465. Character_Section_Button.Parent = SectionList
  466. Character_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  467. Character_Section_Button.BackgroundTransparency = 0.500
  468. Character_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  469. Character_Section_Button.BorderSizePixel = 0
  470. Character_Section_Button.Position = UDim2.new(0, 0, 0, 105)
  471. Character_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  472. Character_Section_Button.Font = Enum.Font.Oswald
  473. Character_Section_Button.Text = "Character"
  474. Character_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  475. Character_Section_Button.TextScaled = true
  476. Character_Section_Button.TextSize = 14.000
  477. Character_Section_Button.TextWrapped = true
  478.  
  479. Target_Section_Button.Name = "Target_Section_Button"
  480. Target_Section_Button.Parent = SectionList
  481. Target_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  482. Target_Section_Button.BackgroundTransparency = 0.500
  483. Target_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  484. Target_Section_Button.BorderSizePixel = 0
  485. Target_Section_Button.Position = UDim2.new(0, 0, 0, 145)
  486. Target_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  487. Target_Section_Button.Font = Enum.Font.Oswald
  488. Target_Section_Button.Text = "Target"
  489. Target_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  490. Target_Section_Button.TextScaled = true
  491. Target_Section_Button.TextSize = 14.000
  492. Target_Section_Button.TextWrapped = true
  493.  
  494. Animations_Section_Button.Name = "Animations_Section_Button"
  495. Animations_Section_Button.Parent = SectionList
  496. Animations_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  497. Animations_Section_Button.BackgroundTransparency = 0.500
  498. Animations_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  499. Animations_Section_Button.BorderSizePixel = 0
  500. Animations_Section_Button.Position = UDim2.new(0, 0, 0, 185)
  501. Animations_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  502. Animations_Section_Button.Font = Enum.Font.Oswald
  503. Animations_Section_Button.Text = "Animations"
  504. Animations_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  505. Animations_Section_Button.TextScaled = true
  506. Animations_Section_Button.TextSize = 14.000
  507. Animations_Section_Button.TextWrapped = true
  508.  
  509. Misc_Section_Button.Name = "Misc_Section_Button"
  510. Misc_Section_Button.Parent = SectionList
  511. Misc_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  512. Misc_Section_Button.BackgroundTransparency = 0.500
  513. Misc_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  514. Misc_Section_Button.BorderSizePixel = 0
  515. Misc_Section_Button.Position = UDim2.new(0, 0, 0, 225)
  516. Misc_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  517. Misc_Section_Button.Font = Enum.Font.Oswald
  518. Misc_Section_Button.Text = "Misc"
  519. Misc_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  520. Misc_Section_Button.TextScaled = true
  521. Misc_Section_Button.TextSize = 14.000
  522. Misc_Section_Button.TextWrapped = true
  523.  
  524. Credits_Section_Button.Name = "Credits_Section_Button"
  525. Credits_Section_Button.Parent = SectionList
  526. Credits_Section_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  527. Credits_Section_Button.BackgroundTransparency = 0.500
  528. Credits_Section_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  529. Credits_Section_Button.BorderSizePixel = 0
  530. Credits_Section_Button.Position = UDim2.new(0, 0, 0, 265)
  531. Credits_Section_Button.Size = UDim2.new(0, 105, 0, 30)
  532. Credits_Section_Button.Font = Enum.Font.Oswald
  533. Credits_Section_Button.Text = "Credits"
  534. Credits_Section_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  535. Credits_Section_Button.TextScaled = true
  536. Credits_Section_Button.TextSize = 14.000
  537. Credits_Section_Button.TextWrapped = true
  538.  
  539. Game_Section.Name = "Game_Section"
  540. Game_Section.Parent = Background
  541. Game_Section.Active = true
  542. Game_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  543. Game_Section.BackgroundTransparency = 1.000
  544. Game_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  545. Game_Section.BorderSizePixel = 0
  546. Game_Section.Position = UDim2.new(0, 105, 0, 30)
  547. Game_Section.Size = UDim2.new(0, 395, 0, 320)
  548. Game_Section.Visible = false
  549. Game_Section.CanvasSize = UDim2.new(0, 0, 1.85, 0)
  550. Game_Section.ScrollBarThickness = 5
  551.  
  552. AntiRagdoll_Button.Name = "AntiRagdoll_Button"
  553. AntiRagdoll_Button.Parent = Game_Section
  554. AntiRagdoll_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  555. AntiRagdoll_Button.BackgroundTransparency = 0.500
  556. AntiRagdoll_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  557. AntiRagdoll_Button.BorderSizePixel = 0
  558. AntiRagdoll_Button.Position = UDim2.new(0, 25, 0, 25)
  559. AntiRagdoll_Button.Size = UDim2.new(0, 150, 0, 30)
  560. AntiRagdoll_Button.Font = Enum.Font.Oswald
  561. AntiRagdoll_Button.Text = "Anti ragdoll"
  562. AntiRagdoll_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  563. AntiRagdoll_Button.TextScaled = true
  564. AntiRagdoll_Button.TextSize = 14.000
  565. AntiRagdoll_Button.TextWrapped = true
  566.  
  567. PotionFling_Button.Name = "PotionFling_Button"
  568. PotionFling_Button.Parent = Game_Section
  569. PotionFling_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  570. PotionFling_Button.BackgroundTransparency = 0.500
  571. PotionFling_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  572. PotionFling_Button.BorderSizePixel = 0
  573. PotionFling_Button.Position = UDim2.new(0, 210, 0, 75)
  574. PotionFling_Button.Size = UDim2.new(0, 150, 0, 30)
  575. PotionFling_Button.Font = Enum.Font.Oswald
  576. PotionFling_Button.Text = "Potion Fling"
  577. PotionFling_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  578. PotionFling_Button.TextScaled = true
  579. PotionFling_Button.TextSize = 14.000
  580. PotionFling_Button.TextWrapped = true
  581.  
  582. SpamMines_Button.Name = "SpamMines_Button"
  583. SpamMines_Button.Parent = Game_Section
  584. SpamMines_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  585. SpamMines_Button.BackgroundTransparency = 0.500
  586. SpamMines_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  587. SpamMines_Button.BorderSizePixel = 0
  588. SpamMines_Button.Position = UDim2.new(0, 25, 0, 75)
  589. SpamMines_Button.Size = UDim2.new(0, 150, 0, 30)
  590. SpamMines_Button.Font = Enum.Font.Oswald
  591. SpamMines_Button.Text = "Spam mines"
  592. SpamMines_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  593. SpamMines_Button.TextScaled = true
  594. SpamMines_Button.TextSize = 14.000
  595. SpamMines_Button.TextWrapped = true
  596.  
  597. PushAura_Button.Name = "PushAura_Button"
  598. PushAura_Button.Parent = Game_Section
  599. PushAura_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  600. PushAura_Button.BackgroundTransparency = 0.500
  601. PushAura_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  602. PushAura_Button.BorderSizePixel = 0
  603. PushAura_Button.Position = UDim2.new(0, 210, 0, 25)
  604. PushAura_Button.Size = UDim2.new(0, 150, 0, 30)
  605. PushAura_Button.Font = Enum.Font.Oswald
  606. PushAura_Button.Text = "Push aura"
  607. PushAura_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  608. PushAura_Button.TextScaled = true
  609. PushAura_Button.TextSize = 14.000
  610. PushAura_Button.TextWrapped = true
  611.  
  612. BreakCannons_Button.Name = "BreakCannons_Button"
  613. BreakCannons_Button.Parent = Game_Section
  614. BreakCannons_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  615. BreakCannons_Button.BackgroundTransparency = 0.500
  616. BreakCannons_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  617. BreakCannons_Button.BorderSizePixel = 0
  618. BreakCannons_Button.Position = UDim2.new(0, 25, 0, 225)
  619. BreakCannons_Button.Size = UDim2.new(0, 150, 0, 30)
  620. BreakCannons_Button.Font = Enum.Font.Oswald
  621. BreakCannons_Button.Text = "Break Cannons"
  622. BreakCannons_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  623. BreakCannons_Button.TextScaled = true
  624. BreakCannons_Button.TextSize = 14.000
  625. BreakCannons_Button.TextWrapped = true
  626.  
  627. LethalCannons_Button.Name = "LethalCannons_Button"
  628. LethalCannons_Button.Parent = Game_Section
  629. LethalCannons_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  630. LethalCannons_Button.BackgroundTransparency = 0.500
  631. LethalCannons_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  632. LethalCannons_Button.BorderSizePixel = 0
  633. LethalCannons_Button.Position = UDim2.new(0, 25, 0, 275)
  634. LethalCannons_Button.Size = UDim2.new(0, 150, 0, 30)
  635. LethalCannons_Button.Font = Enum.Font.Oswald
  636. LethalCannons_Button.Text = "Lethal Cannons"
  637. LethalCannons_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  638. LethalCannons_Button.TextScaled = true
  639. LethalCannons_Button.TextSize = 14.000
  640. LethalCannons_Button.TextWrapped = true
  641.  
  642. ChatAlert_Button.Name = "ChatAlert_Button"
  643. ChatAlert_Button.Parent = Game_Section
  644. ChatAlert_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  645. ChatAlert_Button.BackgroundTransparency = 0.500
  646. ChatAlert_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  647. ChatAlert_Button.BorderSizePixel = 0
  648. ChatAlert_Button.Position = UDim2.new(0, 210, 0, 275)
  649. ChatAlert_Button.Size = UDim2.new(0, 150, 0, 30)
  650. ChatAlert_Button.Font = Enum.Font.Oswald
  651. ChatAlert_Button.Text = "Chat alert"
  652. ChatAlert_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  653. ChatAlert_Button.TextScaled = true
  654. ChatAlert_Button.TextSize = 14.000
  655. ChatAlert_Button.TextWrapped = true
  656.  
  657. PotionDi_Button.Name = "PotionDi_Button"
  658. PotionDi_Button.Parent = Game_Section
  659. PotionDi_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  660. PotionDi_Button.BackgroundTransparency = 0.500
  661. PotionDi_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  662. PotionDi_Button.BorderSizePixel = 0
  663. PotionDi_Button.Position = UDim2.new(0, 210, 0, 125)
  664. PotionDi_Button.Size = UDim2.new(0, 150, 0, 30)
  665. PotionDi_Button.Font = Enum.Font.Oswald
  666. PotionDi_Button.Text = "Potion DiсҚ"
  667. PotionDi_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  668. PotionDi_Button.TextScaled = true
  669. PotionDi_Button.TextSize = 14.000
  670. PotionDi_Button.TextWrapped = true
  671.  
  672. VoidProtection_Button.Name = "VoidProtection_Button"
  673. VoidProtection_Button.Parent = Game_Section
  674. VoidProtection_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  675. VoidProtection_Button.BackgroundTransparency = 0.500
  676. VoidProtection_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  677. VoidProtection_Button.BorderSizePixel = 0
  678. VoidProtection_Button.Position = UDim2.new(0, 25, 0, 175)
  679. VoidProtection_Button.Size = UDim2.new(0, 150, 0, 30)
  680. VoidProtection_Button.Font = Enum.Font.Oswald
  681. VoidProtection_Button.Text = "Void protection"
  682. VoidProtection_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  683. VoidProtection_Button.TextScaled = true
  684. VoidProtection_Button.TextSize = 14.000
  685. VoidProtection_Button.TextWrapped = true
  686.  
  687. PushAll_Button.Name = "PushAll_Button"
  688. PushAll_Button.Parent = Game_Section
  689. PushAll_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  690. PushAll_Button.BackgroundTransparency = 0.500
  691. PushAll_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  692. PushAll_Button.BorderSizePixel = 0
  693. PushAll_Button.Position = UDim2.new(0, 210, 0, 225)
  694. PushAll_Button.Size = UDim2.new(0, 150, 0, 30)
  695. PushAll_Button.Font = Enum.Font.Oswald
  696. PushAll_Button.Text = "Push all"
  697. PushAll_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  698. PushAll_Button.TextScaled = true
  699. PushAll_Button.TextSize = 14.000
  700. PushAll_Button.TextWrapped = true
  701.  
  702. TouchFling_Button.Name = "TouchFling_Button"
  703. TouchFling_Button.Parent = Game_Section
  704. TouchFling_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  705. TouchFling_Button.BackgroundTransparency = 0.500
  706. TouchFling_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  707. TouchFling_Button.BorderSizePixel = 0
  708. TouchFling_Button.Position = UDim2.new(0, 25, 0, 125)
  709. TouchFling_Button.Size = UDim2.new(0, 150, 0, 30)
  710. TouchFling_Button.Font = Enum.Font.Oswald
  711. TouchFling_Button.Text = "Touch fling"
  712. TouchFling_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  713. TouchFling_Button.TextScaled = true
  714. TouchFling_Button.TextSize = 14.000
  715. TouchFling_Button.TextWrapped = true
  716.  
  717. CMDBar.Name = "CMDBar"
  718. CMDBar.Parent = Game_Section
  719. CMDBar.AnchorPoint = Vector2.new(0.5, 0.5)
  720. CMDBar.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  721. CMDBar.BackgroundTransparency = 0.300
  722. CMDBar.BorderColor3 = Color3.fromRGB(0, 255, 255)
  723. CMDBar.Position = UDim2.new(0.5, 0, 0, 350)
  724. CMDBar.Size = UDim2.new(0, 275, 0, 40)
  725. CMDBar.Font = Enum.Font.Gotham
  726. CMDBar.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  727. CMDBar.PlaceholderText = "CMD BAR..."
  728. CMDBar.Text = ""
  729. CMDBar.TextColor3 = Color3.fromRGB(20, 20, 20)
  730. CMDBar.TextSize = 14.000
  731. CMDBar.TextWrapped = true
  732.  
  733. CannonTP1_Button.Name = "CannonTP1_Button"
  734. CannonTP1_Button.Parent = Game_Section
  735. CannonTP1_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  736. CannonTP1_Button.BackgroundTransparency = 0.500
  737. CannonTP1_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  738. CannonTP1_Button.BorderSizePixel = 0
  739. CannonTP1_Button.Position = UDim2.new(0, 25, 0, 400)
  740. CannonTP1_Button.Size = UDim2.new(0, 150, 0, 30)
  741. CannonTP1_Button.Font = Enum.Font.Oswald
  742. CannonTP1_Button.Text = "TP Cannon 1"
  743. CannonTP1_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  744. CannonTP1_Button.TextScaled = true
  745. CannonTP1_Button.TextSize = 14.000
  746. CannonTP1_Button.TextWrapped = true
  747.  
  748. CannonTP2_Button.Name = "CannonTP2_Button"
  749. CannonTP2_Button.Parent = Game_Section
  750. CannonTP2_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  751. CannonTP2_Button.BackgroundTransparency = 0.500
  752. CannonTP2_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  753. CannonTP2_Button.BorderSizePixel = 0
  754. CannonTP2_Button.Position = UDim2.new(0, 210, 0, 400)
  755. CannonTP2_Button.Size = UDim2.new(0, 150, 0, 30)
  756. CannonTP2_Button.Font = Enum.Font.Oswald
  757. CannonTP2_Button.Text = "TP Cannon 2"
  758. CannonTP2_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  759. CannonTP2_Button.TextScaled = true
  760. CannonTP2_Button.TextSize = 14.000
  761. CannonTP2_Button.TextWrapped = true
  762.  
  763. CannonTP3_Button.Name = "CannonTP3_Button"
  764. CannonTP3_Button.Parent = Game_Section
  765. CannonTP3_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  766. CannonTP3_Button.BackgroundTransparency = 0.500
  767. CannonTP3_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  768. CannonTP3_Button.BorderSizePixel = 0
  769. CannonTP3_Button.Position = UDim2.new(0, 25, 0, 450)
  770. CannonTP3_Button.Size = UDim2.new(0, 150, 0, 30)
  771. CannonTP3_Button.Font = Enum.Font.Oswald
  772. CannonTP3_Button.Text = "TP Cannon 3"
  773. CannonTP3_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  774. CannonTP3_Button.TextScaled = true
  775. CannonTP3_Button.TextSize = 14.000
  776. CannonTP3_Button.TextWrapped = true
  777.  
  778. MinefieldTP_Button.Name = "MinefieldTP_Button"
  779. MinefieldTP_Button.Parent = Game_Section
  780. MinefieldTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  781. MinefieldTP_Button.BackgroundTransparency = 0.500
  782. MinefieldTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  783. MinefieldTP_Button.BorderSizePixel = 0
  784. MinefieldTP_Button.Position = UDim2.new(0, 210, 0, 450)
  785. MinefieldTP_Button.Size = UDim2.new(0, 150, 0, 30)
  786. MinefieldTP_Button.Font = Enum.Font.Oswald
  787. MinefieldTP_Button.Text = "TP Minefield"
  788. MinefieldTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  789. MinefieldTP_Button.TextScaled = true
  790. MinefieldTP_Button.TextSize = 14.000
  791. MinefieldTP_Button.TextWrapped = true
  792.  
  793. BallonTP_Button.Name = "BallonTP_Button"
  794. BallonTP_Button.Parent = Game_Section
  795. BallonTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  796. BallonTP_Button.BackgroundTransparency = 0.500
  797. BallonTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  798. BallonTP_Button.BorderSizePixel = 0
  799. BallonTP_Button.Position = UDim2.new(0, 25, 0, 500)
  800. BallonTP_Button.Size = UDim2.new(0, 150, 0, 30)
  801. BallonTP_Button.Font = Enum.Font.Oswald
  802. BallonTP_Button.Text = "TP Ballon"
  803. BallonTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  804. BallonTP_Button.TextScaled = true
  805. BallonTP_Button.TextSize = 14.000
  806. BallonTP_Button.TextWrapped = true
  807.  
  808. NormalStairsTP_Button.Name = "NormalStairsTP_Button"
  809. NormalStairsTP_Button.Parent = Game_Section
  810. NormalStairsTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  811. NormalStairsTP_Button.BackgroundTransparency = 0.500
  812. NormalStairsTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  813. NormalStairsTP_Button.BorderSizePixel = 0
  814. NormalStairsTP_Button.Position = UDim2.new(0, 210, 0, 500)
  815. NormalStairsTP_Button.Size = UDim2.new(0, 150, 0, 30)
  816. NormalStairsTP_Button.Font = Enum.Font.Oswald
  817. NormalStairsTP_Button.Text = "TP Stairs"
  818. NormalStairsTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  819. NormalStairsTP_Button.TextScaled = true
  820. NormalStairsTP_Button.TextSize = 14.000
  821. NormalStairsTP_Button.TextWrapped = true
  822.  
  823. MovingStairsTP_Button.Name = "MovingStairsTP_Button"
  824. MovingStairsTP_Button.Parent = Game_Section
  825. MovingStairsTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  826. MovingStairsTP_Button.BackgroundTransparency = 0.500
  827. MovingStairsTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  828. MovingStairsTP_Button.BorderSizePixel = 0
  829. MovingStairsTP_Button.Position = UDim2.new(0, 25, 0, 550)
  830. MovingStairsTP_Button.Size = UDim2.new(0, 150, 0, 30)
  831. MovingStairsTP_Button.Font = Enum.Font.Oswald
  832. MovingStairsTP_Button.Text = "TP Moving Stairs"
  833. MovingStairsTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  834. MovingStairsTP_Button.TextScaled = true
  835. MovingStairsTP_Button.TextSize = 14.000
  836. MovingStairsTP_Button.TextWrapped = true
  837.  
  838. SpiralStairsTP_Button.Name = "SpiralStairsTP_Button"
  839. SpiralStairsTP_Button.Parent = Game_Section
  840. SpiralStairsTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  841. SpiralStairsTP_Button.BackgroundTransparency = 0.500
  842. SpiralStairsTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  843. SpiralStairsTP_Button.BorderSizePixel = 0
  844. SpiralStairsTP_Button.Position = UDim2.new(0, 210, 0, 550)
  845. SpiralStairsTP_Button.Size = UDim2.new(0, 150, 0, 30)
  846. SpiralStairsTP_Button.Font = Enum.Font.Oswald
  847. SpiralStairsTP_Button.Text = "TP Spiral Stairs"
  848. SpiralStairsTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  849. SpiralStairsTP_Button.TextScaled = true
  850. SpiralStairsTP_Button.TextSize = 14.000
  851. SpiralStairsTP_Button.TextWrapped = true
  852.  
  853. SkyscraperTP_Button.Name = "SkyscraperTP_Button"
  854. SkyscraperTP_Button.Parent = Game_Section
  855. SkyscraperTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  856. SkyscraperTP_Button.BackgroundTransparency = 0.500
  857. SkyscraperTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  858. SkyscraperTP_Button.BorderSizePixel = 0
  859. SkyscraperTP_Button.Position = UDim2.new(0, 25, 0, 600)
  860. SkyscraperTP_Button.Size = UDim2.new(0, 150, 0, 30)
  861. SkyscraperTP_Button.Font = Enum.Font.Oswald
  862. SkyscraperTP_Button.Text = "TP Skyscraper"
  863. SkyscraperTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  864. SkyscraperTP_Button.TextScaled = true
  865. SkyscraperTP_Button.TextSize = 14.000
  866. SkyscraperTP_Button.TextWrapped = true
  867.  
  868. PoolTP_Button.Name = "PoolTP_Button"
  869. PoolTP_Button.Parent = Game_Section
  870. PoolTP_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  871. PoolTP_Button.BackgroundTransparency = 0.500
  872. PoolTP_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  873. PoolTP_Button.BorderSizePixel = 0
  874. PoolTP_Button.Position = UDim2.new(0, 210, 0, 600)
  875. PoolTP_Button.Size = UDim2.new(0, 150, 0, 30)
  876. PoolTP_Button.Font = Enum.Font.Oswald
  877. PoolTP_Button.Text = "TP Pool"
  878. PoolTP_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  879. PoolTP_Button.TextScaled = true
  880. PoolTP_Button.TextSize = 14.000
  881. PoolTP_Button.TextWrapped = true
  882.  
  883. FreePushTool_Button.Name = "FreePushTool_Button"
  884. FreePushTool_Button.Parent = Game_Section
  885. FreePushTool_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  886. FreePushTool_Button.BackgroundTransparency = 0.500
  887. FreePushTool_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  888. FreePushTool_Button.BorderSizePixel = 0
  889. FreePushTool_Button.Position = UDim2.new(0, 210, 0, 175)
  890. FreePushTool_Button.Size = UDim2.new(0, 150, 0, 30)
  891. FreePushTool_Button.Font = Enum.Font.Oswald
  892. FreePushTool_Button.Text = "Modded push"
  893. FreePushTool_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  894. FreePushTool_Button.TextScaled = true
  895. FreePushTool_Button.TextSize = 14.000
  896. FreePushTool_Button.TextWrapped = true
  897.  
  898. Home_Section.Name = "Home_Section"
  899. Home_Section.Parent = Background
  900. Home_Section.Active = true
  901. Home_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  902. Home_Section.BackgroundTransparency = 1.000
  903. Home_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  904. Home_Section.BorderSizePixel = 0
  905. Home_Section.Position = UDim2.new(0, 105, 0, 30)
  906. Home_Section.Size = UDim2.new(0, 395, 0, 320)
  907. Home_Section.CanvasSize = UDim2.new(0, 0, 0, 0)
  908. Home_Section.ScrollBarThickness = 5
  909.  
  910. Profile_Image.Name = "Profile_Image"
  911. Profile_Image.Parent = Home_Section
  912. Profile_Image.BackgroundColor3 = Color3.fromRGB(30,30,30)
  913. Profile_Image.BorderColor3 = Color3.fromRGB(0, 0, 0)
  914. Profile_Image.BorderSizePixel = 0
  915. Profile_Image.Position = UDim2.new(0, 25, 0, 25)
  916. Profile_Image.Size = UDim2.new(0, 100, 0, 100)
  917. Profile_Image.Image = Players:GetUserThumbnailAsync(plr.UserId,Enum.ThumbnailType.HeadShot,Enum.ThumbnailSize.Size420x420)
  918.  
  919. Welcome_Label.Name = "Welcome_Label"
  920. Welcome_Label.Parent = Home_Section
  921. Welcome_Label.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  922. Welcome_Label.BackgroundTransparency = 1.000
  923. Welcome_Label.BorderColor3 = Color3.fromRGB(0, 0, 0)
  924. Welcome_Label.BorderSizePixel = 0
  925. Welcome_Label.Position = UDim2.new(0, 150, 0, 25)
  926. Welcome_Label.Size = UDim2.new(0, 200, 0, 100)
  927. Welcome_Label.Font = Enum.Font.SourceSans
  928. Welcome_Label.Text = ("¡Hello @"..plr.Name.."!\nPress [B] to open/close gui.")
  929. Welcome_Label.TextColor3 = Color3.fromRGB(0, 255, 255)
  930. Welcome_Label.TextSize = 24.000
  931. Welcome_Label.TextWrapped = true
  932. Welcome_Label.TextXAlignment = Enum.TextXAlignment.Left
  933. Welcome_Label.TextYAlignment = Enum.TextYAlignment.Top
  934.  
  935. Announce_Label.Name = "Announce_Label"
  936. Announce_Label.Parent = Home_Section
  937. Announce_Label.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  938. Announce_Label.BorderColor3 = Color3.fromRGB(0, 0, 0)
  939. Announce_Label.BorderSizePixel = 0
  940. Announce_Label.Position = UDim2.new(0, 25, 0, 150)
  941. Announce_Label.Size = UDim2.new(0, 350, 0, 150)
  942. Announce_Label.Font = Enum.Font.SourceSans
  943. Announce_Label.Text = loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/announce"))()
  944. Announce_Label.TextColor3 = Color3.fromRGB(0, 255, 255)
  945. Announce_Label.TextSize = 24.000
  946. Announce_Label.TextWrapped = true
  947. Announce_Label.TextXAlignment = Enum.TextXAlignment.Left
  948. Announce_Label.TextYAlignment = Enum.TextYAlignment.Top
  949.  
  950. Character_Section.Name = "Character_Section"
  951. Character_Section.Parent = Background
  952. Character_Section.Active = true
  953. Character_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  954. Character_Section.BackgroundTransparency = 1.000
  955. Character_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  956. Character_Section.BorderSizePixel = 0
  957. Character_Section.Position = UDim2.new(0, 105, 0, 30)
  958. Character_Section.Size = UDim2.new(0, 395, 0, 320)
  959. Character_Section.Visible = false
  960. Character_Section.CanvasSize = UDim2.new(0, 0, 1, 0)
  961. Character_Section.ScrollBarThickness = 5
  962.  
  963. WalkSpeed_Button.Name = "WalkSpeed_Button"
  964. WalkSpeed_Button.Parent = Character_Section
  965. WalkSpeed_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  966. WalkSpeed_Button.BackgroundTransparency = 0.500
  967. WalkSpeed_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  968. WalkSpeed_Button.BorderSizePixel = 0
  969. WalkSpeed_Button.Position = UDim2.new(0, 25, 0, 25)
  970. WalkSpeed_Button.Size = UDim2.new(0, 150, 0, 30)
  971. WalkSpeed_Button.Font = Enum.Font.Oswald
  972. WalkSpeed_Button.Text = "Walk Speed"
  973. WalkSpeed_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  974. WalkSpeed_Button.TextScaled = true
  975. WalkSpeed_Button.TextSize = 14.000
  976. WalkSpeed_Button.TextWrapped = true
  977.  
  978. WalkSpeed_Input.Name = "WalkSpeed_Input"
  979. WalkSpeed_Input.Parent = Character_Section
  980. WalkSpeed_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  981. WalkSpeed_Input.BackgroundTransparency = 0.300
  982. WalkSpeed_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  983. WalkSpeed_Input.Position = UDim2.new(0, 210, 0, 25)
  984. WalkSpeed_Input.Size = UDim2.new(0, 175, 0, 30)
  985. WalkSpeed_Input.Font = Enum.Font.Gotham
  986. WalkSpeed_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  987. WalkSpeed_Input.PlaceholderText = "Number [1-99999]"
  988. WalkSpeed_Input.Text = ""
  989. WalkSpeed_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  990. WalkSpeed_Input.TextSize = 14.000
  991. WalkSpeed_Input.TextWrapped = true
  992.  
  993. ClearCheckpoint_Button.Name = "ClearCheckpoint_Button"
  994. ClearCheckpoint_Button.Parent = Character_Section
  995. ClearCheckpoint_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  996. ClearCheckpoint_Button.BackgroundTransparency = 0.500
  997. ClearCheckpoint_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  998. ClearCheckpoint_Button.BorderSizePixel = 0
  999. ClearCheckpoint_Button.Position = UDim2.new(0, 210, 0, 225)
  1000. ClearCheckpoint_Button.Size = UDim2.new(0, 150, 0, 30)
  1001. ClearCheckpoint_Button.Font = Enum.Font.Oswald
  1002. ClearCheckpoint_Button.Text = "Clear checkpoint"
  1003. ClearCheckpoint_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1004. ClearCheckpoint_Button.TextScaled = true
  1005. ClearCheckpoint_Button.TextSize = 14.000
  1006. ClearCheckpoint_Button.TextWrapped = true
  1007.  
  1008. JumpPower_Input.Name = "JumpPower_Input"
  1009. JumpPower_Input.Parent = Character_Section
  1010. JumpPower_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  1011. JumpPower_Input.BackgroundTransparency = 0.300
  1012. JumpPower_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1013. JumpPower_Input.Position = UDim2.new(0, 210, 0, 75)
  1014. JumpPower_Input.Size = UDim2.new(0, 175, 0, 30)
  1015. JumpPower_Input.Font = Enum.Font.Gotham
  1016. JumpPower_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1017. JumpPower_Input.PlaceholderText = "Number [1-99999]"
  1018. JumpPower_Input.Text = ""
  1019. JumpPower_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  1020. JumpPower_Input.TextSize = 14.000
  1021. JumpPower_Input.TextWrapped = true
  1022.  
  1023. JumpPower_Button.Name = "JumpPower_Button"
  1024. JumpPower_Button.Parent = Character_Section
  1025. JumpPower_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1026. JumpPower_Button.BackgroundTransparency = 0.500
  1027. JumpPower_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1028. JumpPower_Button.BorderSizePixel = 0
  1029. JumpPower_Button.Position = UDim2.new(0, 25, 0, 75)
  1030. JumpPower_Button.Size = UDim2.new(0, 150, 0, 30)
  1031. JumpPower_Button.Font = Enum.Font.Oswald
  1032. JumpPower_Button.Text = "Jump power"
  1033. JumpPower_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1034. JumpPower_Button.TextScaled = true
  1035. JumpPower_Button.TextSize = 14.000
  1036. JumpPower_Button.TextWrapped = true
  1037.  
  1038. SaveCheckpoint_Button.Name = "SaveCheckpoint_Button"
  1039. SaveCheckpoint_Button.Parent = Character_Section
  1040. SaveCheckpoint_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1041. SaveCheckpoint_Button.BackgroundTransparency = 0.500
  1042. SaveCheckpoint_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1043. SaveCheckpoint_Button.BorderSizePixel = 0
  1044. SaveCheckpoint_Button.Position = UDim2.new(0, 210, 0, 175)
  1045. SaveCheckpoint_Button.Size = UDim2.new(0, 150, 0, 30)
  1046. SaveCheckpoint_Button.Font = Enum.Font.Oswald
  1047. SaveCheckpoint_Button.Text = "Save checkpoint"
  1048. SaveCheckpoint_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1049. SaveCheckpoint_Button.TextScaled = true
  1050. SaveCheckpoint_Button.TextSize = 14.000
  1051. SaveCheckpoint_Button.TextWrapped = true
  1052.  
  1053. Respawn_Button.Name = "Respawn_Button"
  1054. Respawn_Button.Parent = Character_Section
  1055. Respawn_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1056. Respawn_Button.BackgroundTransparency = 0.500
  1057. Respawn_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1058. Respawn_Button.BorderSizePixel = 0
  1059. Respawn_Button.Position = UDim2.new(0, 25, 0, 225)
  1060. Respawn_Button.Size = UDim2.new(0, 150, 0, 30)
  1061. Respawn_Button.Font = Enum.Font.Oswald
  1062. Respawn_Button.Text = "Respawn"
  1063. Respawn_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1064. Respawn_Button.TextScaled = true
  1065. Respawn_Button.TextSize = 14.000
  1066. Respawn_Button.TextWrapped = true
  1067.  
  1068. FlySpeed_Button.Name = "FlySpeed_Button"
  1069. FlySpeed_Button.Parent = Character_Section
  1070. FlySpeed_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1071. FlySpeed_Button.BackgroundTransparency = 0.500
  1072. FlySpeed_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1073. FlySpeed_Button.BorderSizePixel = 0
  1074. FlySpeed_Button.Position = UDim2.new(0, 25, 0, 125)
  1075. FlySpeed_Button.Size = UDim2.new(0, 150, 0, 30)
  1076. FlySpeed_Button.Font = Enum.Font.Oswald
  1077. FlySpeed_Button.Text = "Fly speed"
  1078. FlySpeed_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1079. FlySpeed_Button.TextScaled = true
  1080. FlySpeed_Button.TextSize = 14.000
  1081. FlySpeed_Button.TextWrapped = true
  1082.  
  1083. FlySpeed_Input.Name = "FlySpeed_Input"
  1084. FlySpeed_Input.Parent = Character_Section
  1085. FlySpeed_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  1086. FlySpeed_Input.BackgroundTransparency = 0.300
  1087. FlySpeed_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1088. FlySpeed_Input.Position = UDim2.new(0, 210, 0, 125)
  1089. FlySpeed_Input.Size = UDim2.new(0, 175, 0, 30)
  1090. FlySpeed_Input.Font = Enum.Font.Gotham
  1091. FlySpeed_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1092. FlySpeed_Input.PlaceholderText = "Number [1-99999]"
  1093. FlySpeed_Input.Text = ""
  1094. FlySpeed_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  1095. FlySpeed_Input.TextSize = 14.000
  1096. FlySpeed_Input.TextWrapped = true
  1097.  
  1098. Fly_Button.Name = "Fly_Button"
  1099. Fly_Button.Parent = Character_Section
  1100. Fly_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1101. Fly_Button.BackgroundTransparency = 0.500
  1102. Fly_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1103. Fly_Button.BorderSizePixel = 0
  1104. Fly_Button.Position = UDim2.new(0, 25, 0, 175)
  1105. Fly_Button.Size = UDim2.new(0, 150, 0, 30)
  1106. Fly_Button.Font = Enum.Font.Oswald
  1107. Fly_Button.Text = "Fly"
  1108. Fly_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1109. Fly_Button.TextScaled = true
  1110. Fly_Button.TextSize = 14.000
  1111. Fly_Button.TextWrapped = true
  1112.  
  1113. Target_Section.Name = "Target_Section"
  1114. Target_Section.Parent = Background
  1115. Target_Section.Active = true
  1116. Target_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1117. Target_Section.BackgroundTransparency = 1.000
  1118. Target_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1119. Target_Section.BorderSizePixel = 0
  1120. Target_Section.Position = UDim2.new(0, 105, 0, 30)
  1121. Target_Section.Size = UDim2.new(0, 395, 0, 320)
  1122. Target_Section.Visible = false
  1123. Target_Section.CanvasSize = UDim2.new(0, 0, 1.25, 0)
  1124. Target_Section.ScrollBarThickness = 5
  1125.  
  1126. TargetImage.Name = "TargetImage"
  1127. TargetImage.Parent = Target_Section
  1128. TargetImage.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1129. TargetImage.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1130. TargetImage.Position = UDim2.new(0, 25, 0, 25)
  1131. TargetImage.Size = UDim2.new(0, 100, 0, 100)
  1132. TargetImage.Image = "rbxassetid://10818605405"
  1133.  
  1134. TargetName_Input.Name = "TargetName_Input"
  1135. TargetName_Input.Parent = Target_Section
  1136. TargetName_Input.BackgroundColor3 = Color3.fromRGB(0, 140, 140)
  1137. TargetName_Input.BackgroundTransparency = 0.300
  1138. TargetName_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1139. TargetName_Input.Position = UDim2.new(0, 150, 0, 30)
  1140. TargetName_Input.Size = UDim2.new(0, 175, 0, 30)
  1141. TargetName_Input.Font = Enum.Font.Gotham
  1142. TargetName_Input.PlaceholderColor3 = Color3.fromRGB(0, 0, 0)
  1143. TargetName_Input.PlaceholderText = "@target..."
  1144. TargetName_Input.Text = ""
  1145. TargetName_Input.TextColor3 = Color3.fromRGB(20, 20, 20)
  1146. TargetName_Input.TextSize = 14.000
  1147. TargetName_Input.TextWrapped = true
  1148.  
  1149. ClickTargetTool_Button.Name = "ClickTargetTool_Button"
  1150. ClickTargetTool_Button.Parent = TargetName_Input
  1151. ClickTargetTool_Button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1152. ClickTargetTool_Button.BackgroundTransparency = 1.000
  1153. ClickTargetTool_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1154. ClickTargetTool_Button.BorderSizePixel = 0
  1155. ClickTargetTool_Button.Position = UDim2.new(0, 180, 0, 0)
  1156. ClickTargetTool_Button.Size = UDim2.new(0, 30, 0, 30)
  1157. ClickTargetTool_Button.Image = "rbxassetid://2716591855"
  1158.  
  1159. UserIDTargetLabel.Name = "UserIDTargetLabel"
  1160. UserIDTargetLabel.Parent = Target_Section
  1161. UserIDTargetLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1162. UserIDTargetLabel.BackgroundTransparency = 1.000
  1163. UserIDTargetLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1164. UserIDTargetLabel.BorderSizePixel = 0
  1165. UserIDTargetLabel.Position = UDim2.new(0, 150, 0, 70)
  1166. UserIDTargetLabel.Size = UDim2.new(0, 300, 0, 75)
  1167. UserIDTargetLabel.Font = Enum.Font.Oswald
  1168. UserIDTargetLabel.Text = "UserID: \nDisplay: \nJoined: "
  1169. UserIDTargetLabel.TextColor3 = Color3.fromRGB(0, 255, 255)
  1170. UserIDTargetLabel.TextSize = 18.000
  1171. UserIDTargetLabel.TextWrapped = true
  1172. UserIDTargetLabel.TextXAlignment = Enum.TextXAlignment.Left
  1173. UserIDTargetLabel.TextYAlignment = Enum.TextYAlignment.Top
  1174.  
  1175. ViewTarget_Button.Name = "ViewTarget_Button"
  1176. ViewTarget_Button.Parent = Target_Section
  1177. ViewTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1178. ViewTarget_Button.BackgroundTransparency = 0.500
  1179. ViewTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1180. ViewTarget_Button.BorderSizePixel = 0
  1181. ViewTarget_Button.Position = UDim2.new(0, 210, 0, 150)
  1182. ViewTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1183. ViewTarget_Button.Font = Enum.Font.Oswald
  1184. ViewTarget_Button.Text = "View"
  1185. ViewTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1186. ViewTarget_Button.TextScaled = true
  1187. ViewTarget_Button.TextSize = 14.000
  1188. ViewTarget_Button.TextWrapped = true
  1189.  
  1190. FlingTarget_Button.Name = "FlingTarget_Button"
  1191. FlingTarget_Button.Parent = Target_Section
  1192. FlingTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1193. FlingTarget_Button.BackgroundTransparency = 0.500
  1194. FlingTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1195. FlingTarget_Button.BorderSizePixel = 0
  1196. FlingTarget_Button.Position = UDim2.new(0, 25, 0, 150)
  1197. FlingTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1198. FlingTarget_Button.Font = Enum.Font.Oswald
  1199. FlingTarget_Button.Text = "Fling"
  1200. FlingTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1201. FlingTarget_Button.TextScaled = true
  1202. FlingTarget_Button.TextSize = 14.000
  1203. FlingTarget_Button.TextWrapped = true
  1204.  
  1205. FocusTarget_Button.Name = "FocusTarget_Button"
  1206. FocusTarget_Button.Parent = Target_Section
  1207. FocusTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1208. FocusTarget_Button.BackgroundTransparency = 0.500
  1209. FocusTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1210. FocusTarget_Button.BorderSizePixel = 0
  1211. FocusTarget_Button.Position = UDim2.new(0, 25, 0, 200)
  1212. FocusTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1213. FocusTarget_Button.Font = Enum.Font.Oswald
  1214. FocusTarget_Button.Text = "Focus"
  1215. FocusTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1216. FocusTarget_Button.TextScaled = true
  1217. FocusTarget_Button.TextSize = 14.000
  1218. FocusTarget_Button.TextWrapped = true
  1219.  
  1220. BenxTarget_Button.Name = "BenxTarget_Button"
  1221. BenxTarget_Button.Parent = Target_Section
  1222. BenxTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1223. BenxTarget_Button.BackgroundTransparency = 0.500
  1224. BenxTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1225. BenxTarget_Button.BorderSizePixel = 0
  1226. BenxTarget_Button.Position = UDim2.new(0, 210, 0, 200)
  1227. BenxTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1228. BenxTarget_Button.Font = Enum.Font.Oswald
  1229. BenxTarget_Button.Text = "Bang"
  1230. BenxTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1231. BenxTarget_Button.TextScaled = true
  1232. BenxTarget_Button.TextSize = 14.000
  1233. BenxTarget_Button.TextWrapped = true
  1234.  
  1235. PushTarget_Button.Name = "PushTarget_Button"
  1236. PushTarget_Button.Parent = Target_Section
  1237. PushTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1238. PushTarget_Button.BackgroundTransparency = 0.500
  1239. PushTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1240. PushTarget_Button.BorderSizePixel = 0
  1241. PushTarget_Button.Position = UDim2.new(0, 25, 0, 400)
  1242. PushTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1243. PushTarget_Button.Font = Enum.Font.Oswald
  1244. PushTarget_Button.Text = "Push"
  1245. PushTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1246. PushTarget_Button.TextScaled = true
  1247. PushTarget_Button.TextSize = 14.000
  1248. PushTarget_Button.TextWrapped = true
  1249.  
  1250. WhitelistTarget_Button.Name = "WhitelistTarget_Button"
  1251. WhitelistTarget_Button.Parent = Target_Section
  1252. WhitelistTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1253. WhitelistTarget_Button.BackgroundTransparency = 0.500
  1254. WhitelistTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1255. WhitelistTarget_Button.BorderSizePixel = 0
  1256. WhitelistTarget_Button.Position = UDim2.new(0, 210, 0, 400)
  1257. WhitelistTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1258. WhitelistTarget_Button.Font = Enum.Font.Oswald
  1259. WhitelistTarget_Button.Text = "Whitelist"
  1260. WhitelistTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1261. WhitelistTarget_Button.TextScaled = true
  1262. WhitelistTarget_Button.TextSize = 14.000
  1263. WhitelistTarget_Button.TextWrapped = true
  1264.  
  1265. TeleportTarget_Button.Name = "TeleportTarget_Button"
  1266. TeleportTarget_Button.Parent = Target_Section
  1267. TeleportTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1268. TeleportTarget_Button.BackgroundTransparency = 0.500
  1269. TeleportTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1270. TeleportTarget_Button.BorderSizePixel = 0
  1271. TeleportTarget_Button.Position = UDim2.new(0, 210, 0, 350)
  1272. TeleportTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1273. TeleportTarget_Button.Font = Enum.Font.Oswald
  1274. TeleportTarget_Button.Text = "Teleport"
  1275. TeleportTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1276. TeleportTarget_Button.TextScaled = true
  1277. TeleportTarget_Button.TextSize = 14.000
  1278. TeleportTarget_Button.TextWrapped = true
  1279.  
  1280. HeadsitTarget_Button.Name = "HeadsitTarget_Button"
  1281. HeadsitTarget_Button.Parent = Target_Section
  1282. HeadsitTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1283. HeadsitTarget_Button.BackgroundTransparency = 0.500
  1284. HeadsitTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1285. HeadsitTarget_Button.BorderSizePixel = 0
  1286. HeadsitTarget_Button.Position = UDim2.new(0, 210, 0, 250)
  1287. HeadsitTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1288. HeadsitTarget_Button.Font = Enum.Font.Oswald
  1289. HeadsitTarget_Button.Text = "Headsit"
  1290. HeadsitTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1291. HeadsitTarget_Button.TextScaled = true
  1292. HeadsitTarget_Button.TextSize = 14.000
  1293. HeadsitTarget_Button.TextWrapped = true
  1294.  
  1295. StandTarget_Button.Name = "StandTarget_Button"
  1296. StandTarget_Button.Parent = Target_Section
  1297. StandTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1298. StandTarget_Button.BackgroundTransparency = 0.500
  1299. StandTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1300. StandTarget_Button.BorderSizePixel = 0
  1301. StandTarget_Button.Position = UDim2.new(0, 25, 0, 250)
  1302. StandTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1303. StandTarget_Button.Font = Enum.Font.Oswald
  1304. StandTarget_Button.Text = "Stand"
  1305. StandTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1306. StandTarget_Button.TextScaled = true
  1307. StandTarget_Button.TextSize = 14.000
  1308. StandTarget_Button.TextWrapped = true
  1309.  
  1310. BackpackTarget_Button.Name = "BackpackTarget_Button"
  1311. BackpackTarget_Button.Parent = Target_Section
  1312. BackpackTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1313. BackpackTarget_Button.BackgroundTransparency = 0.500
  1314. BackpackTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1315. BackpackTarget_Button.BorderSizePixel = 0
  1316. BackpackTarget_Button.Position = UDim2.new(0, 210, 0, 300)
  1317. BackpackTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1318. BackpackTarget_Button.Font = Enum.Font.Oswald
  1319. BackpackTarget_Button.Text = "Backpack"
  1320. BackpackTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1321. BackpackTarget_Button.TextScaled = true
  1322. BackpackTarget_Button.TextSize = 14.000
  1323. BackpackTarget_Button.TextWrapped = true
  1324.  
  1325. DoggyTarget_Button.Name = "DoggyTarget_Button"
  1326. DoggyTarget_Button.Parent = Target_Section
  1327. DoggyTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1328. DoggyTarget_Button.BackgroundTransparency = 0.500
  1329. DoggyTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1330. DoggyTarget_Button.BorderSizePixel = 0
  1331. DoggyTarget_Button.Position = UDim2.new(0, 25, 0, 300)
  1332. DoggyTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1333. DoggyTarget_Button.Font = Enum.Font.Oswald
  1334. DoggyTarget_Button.Text = "Doggy"
  1335. DoggyTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1336. DoggyTarget_Button.TextScaled = true
  1337. DoggyTarget_Button.TextSize = 14.000
  1338. DoggyTarget_Button.TextWrapped = true
  1339.  
  1340. DragTarget_Button.Name = "DragTarget_Button"
  1341. DragTarget_Button.Parent = Target_Section
  1342. DragTarget_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1343. DragTarget_Button.BackgroundTransparency = 0.500
  1344. DragTarget_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1345. DragTarget_Button.BorderSizePixel = 0
  1346. DragTarget_Button.Position = UDim2.new(0, 25, 0, 350)
  1347. DragTarget_Button.Size = UDim2.new(0, 150, 0, 30)
  1348. DragTarget_Button.Font = Enum.Font.Oswald
  1349. DragTarget_Button.Text = "Drag"
  1350. DragTarget_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1351. DragTarget_Button.TextScaled = true
  1352. DragTarget_Button.TextSize = 14.000
  1353. DragTarget_Button.TextWrapped = true
  1354.  
  1355. Animations_Section.Name = "Animations_Section"
  1356. Animations_Section.Parent = Background
  1357. Animations_Section.Active = true
  1358. Animations_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1359. Animations_Section.BackgroundTransparency = 1.000
  1360. Animations_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1361. Animations_Section.BorderSizePixel = 0
  1362. Animations_Section.Position = UDim2.new(0, 105, 0, 30)
  1363. Animations_Section.Size = UDim2.new(0, 395, 0, 320)
  1364. Animations_Section.Visible = false
  1365. Animations_Section.CanvasSize = UDim2.new(0, 0, 1.6, 0)
  1366. Animations_Section.ScrollBarThickness = 5
  1367.  
  1368. VampireAnim_Button.Name = "VampireAnim_Button"
  1369. VampireAnim_Button.Parent = Animations_Section
  1370. VampireAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1371. VampireAnim_Button.BackgroundTransparency = 0.500
  1372. VampireAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1373. VampireAnim_Button.BorderSizePixel = 0
  1374. VampireAnim_Button.Position = UDim2.new(0, 25, 0, 25)
  1375. VampireAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1376. VampireAnim_Button.Font = Enum.Font.Oswald
  1377. VampireAnim_Button.Text = "Vampire"
  1378. VampireAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1379. VampireAnim_Button.TextScaled = true
  1380. VampireAnim_Button.TextSize = 14.000
  1381. VampireAnim_Button.TextWrapped = true
  1382.  
  1383. HeroAnim_Button.Name = "HeroAnim_Button"
  1384. HeroAnim_Button.Parent = Animations_Section
  1385. HeroAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1386. HeroAnim_Button.BackgroundTransparency = 0.500
  1387. HeroAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1388. HeroAnim_Button.BorderSizePixel = 0
  1389. HeroAnim_Button.Position = UDim2.new(0, 210, 0, 25)
  1390. HeroAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1391. HeroAnim_Button.Font = Enum.Font.Oswald
  1392. HeroAnim_Button.Text = "Hero"
  1393. HeroAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1394. HeroAnim_Button.TextScaled = true
  1395. HeroAnim_Button.TextSize = 14.000
  1396. HeroAnim_Button.TextWrapped = true
  1397.  
  1398. ZombieClassicAnim_Button.Name = "ZombieClassicAnim_Button"
  1399. ZombieClassicAnim_Button.Parent = Animations_Section
  1400. ZombieClassicAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1401. ZombieClassicAnim_Button.BackgroundTransparency = 0.500
  1402. ZombieClassicAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1403. ZombieClassicAnim_Button.BorderSizePixel = 0
  1404. ZombieClassicAnim_Button.Position = UDim2.new(0, 25, 0, 75)
  1405. ZombieClassicAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1406. ZombieClassicAnim_Button.Font = Enum.Font.Oswald
  1407. ZombieClassicAnim_Button.Text = "Zombie Classic"
  1408. ZombieClassicAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1409. ZombieClassicAnim_Button.TextScaled = true
  1410. ZombieClassicAnim_Button.TextSize = 14.000
  1411. ZombieClassicAnim_Button.TextWrapped = true
  1412.  
  1413. MageAnim_Button.Name = "MageAnim_Button"
  1414. MageAnim_Button.Parent = Animations_Section
  1415. MageAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1416. MageAnim_Button.BackgroundTransparency = 0.500
  1417. MageAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1418. MageAnim_Button.BorderSizePixel = 0
  1419. MageAnim_Button.Position = UDim2.new(0, 210, 0, 75)
  1420. MageAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1421. MageAnim_Button.Font = Enum.Font.Oswald
  1422. MageAnim_Button.Text = "Mage"
  1423. MageAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1424. MageAnim_Button.TextScaled = true
  1425. MageAnim_Button.TextSize = 14.000
  1426. MageAnim_Button.TextWrapped = true
  1427.  
  1428. GhostAnim_Button.Name = "GhostAnim_Button"
  1429. GhostAnim_Button.Parent = Animations_Section
  1430. GhostAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1431. GhostAnim_Button.BackgroundTransparency = 0.500
  1432. GhostAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1433. GhostAnim_Button.BorderSizePixel = 0
  1434. GhostAnim_Button.Position = UDim2.new(0, 25, 0, 125)
  1435. GhostAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1436. GhostAnim_Button.Font = Enum.Font.Oswald
  1437. GhostAnim_Button.Text = "Ghost"
  1438. GhostAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1439. GhostAnim_Button.TextScaled = true
  1440. GhostAnim_Button.TextSize = 14.000
  1441. GhostAnim_Button.TextWrapped = true
  1442.  
  1443. ElderAnim_Button.Name = "ElderAnim_Button"
  1444. ElderAnim_Button.Parent = Animations_Section
  1445. ElderAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1446. ElderAnim_Button.BackgroundTransparency = 0.500
  1447. ElderAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1448. ElderAnim_Button.BorderSizePixel = 0
  1449. ElderAnim_Button.Position = UDim2.new(0, 210, 0, 125)
  1450. ElderAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1451. ElderAnim_Button.Font = Enum.Font.Oswald
  1452. ElderAnim_Button.Text = "Elder"
  1453. ElderAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1454. ElderAnim_Button.TextScaled = true
  1455. ElderAnim_Button.TextSize = 14.000
  1456. ElderAnim_Button.TextWrapped = true
  1457.  
  1458. LevitationAnim_Button.Name = "LevitationAnim_Button"
  1459. LevitationAnim_Button.Parent = Animations_Section
  1460. LevitationAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1461. LevitationAnim_Button.BackgroundTransparency = 0.500
  1462. LevitationAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1463. LevitationAnim_Button.BorderSizePixel = 0
  1464. LevitationAnim_Button.Position = UDim2.new(0, 25, 0, 175)
  1465. LevitationAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1466. LevitationAnim_Button.Font = Enum.Font.Oswald
  1467. LevitationAnim_Button.Text = "Levitation"
  1468. LevitationAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1469. LevitationAnim_Button.TextScaled = true
  1470. LevitationAnim_Button.TextSize = 14.000
  1471. LevitationAnim_Button.TextWrapped = true
  1472.  
  1473. AstronautAnim_Button.Name = "AstronautAnim_Button"
  1474. AstronautAnim_Button.Parent = Animations_Section
  1475. AstronautAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1476. AstronautAnim_Button.BackgroundTransparency = 0.500
  1477. AstronautAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1478. AstronautAnim_Button.BorderSizePixel = 0
  1479. AstronautAnim_Button.Position = UDim2.new(0, 210, 0, 175)
  1480. AstronautAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1481. AstronautAnim_Button.Font = Enum.Font.Oswald
  1482. AstronautAnim_Button.Text = "Astronaut"
  1483. AstronautAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1484. AstronautAnim_Button.TextScaled = true
  1485. AstronautAnim_Button.TextSize = 14.000
  1486. AstronautAnim_Button.TextWrapped = true
  1487.  
  1488. NinjaAnim_Button.Name = "NinjaAnim_Button"
  1489. NinjaAnim_Button.Parent = Animations_Section
  1490. NinjaAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1491. NinjaAnim_Button.BackgroundTransparency = 0.500
  1492. NinjaAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1493. NinjaAnim_Button.BorderSizePixel = 0
  1494. NinjaAnim_Button.Position = UDim2.new(0, 25, 0, 225)
  1495. NinjaAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1496. NinjaAnim_Button.Font = Enum.Font.Oswald
  1497. NinjaAnim_Button.Text = "Ninja"
  1498. NinjaAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1499. NinjaAnim_Button.TextScaled = true
  1500. NinjaAnim_Button.TextSize = 14.000
  1501. NinjaAnim_Button.TextWrapped = true
  1502.  
  1503. WerewolfAnim_Button.Name = "WerewolfAnim_Button"
  1504. WerewolfAnim_Button.Parent = Animations_Section
  1505. WerewolfAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1506. WerewolfAnim_Button.BackgroundTransparency = 0.500
  1507. WerewolfAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1508. WerewolfAnim_Button.BorderSizePixel = 0
  1509. WerewolfAnim_Button.Position = UDim2.new(0, 210, 0, 225)
  1510. WerewolfAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1511. WerewolfAnim_Button.Font = Enum.Font.Oswald
  1512. WerewolfAnim_Button.Text = "Werewolf"
  1513. WerewolfAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1514. WerewolfAnim_Button.TextScaled = true
  1515. WerewolfAnim_Button.TextSize = 14.000
  1516. WerewolfAnim_Button.TextWrapped = true
  1517.  
  1518. CartoonAnim_Button.Name = "CartoonAnim_Button"
  1519. CartoonAnim_Button.Parent = Animations_Section
  1520. CartoonAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1521. CartoonAnim_Button.BackgroundTransparency = 0.500
  1522. CartoonAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1523. CartoonAnim_Button.BorderSizePixel = 0
  1524. CartoonAnim_Button.Position = UDim2.new(0, 25, 0, 275)
  1525. CartoonAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1526. CartoonAnim_Button.Font = Enum.Font.Oswald
  1527. CartoonAnim_Button.Text = "Cartoon"
  1528. CartoonAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1529. CartoonAnim_Button.TextScaled = true
  1530. CartoonAnim_Button.TextSize = 14.000
  1531. CartoonAnim_Button.TextWrapped = true
  1532.  
  1533. PirateAnim_Button.Name = "PirateAnim_Button"
  1534. PirateAnim_Button.Parent = Animations_Section
  1535. PirateAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1536. PirateAnim_Button.BackgroundTransparency = 0.500
  1537. PirateAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1538. PirateAnim_Button.BorderSizePixel = 0
  1539. PirateAnim_Button.Position = UDim2.new(0, 210, 0, 275)
  1540. PirateAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1541. PirateAnim_Button.Font = Enum.Font.Oswald
  1542. PirateAnim_Button.Text = "Pirate"
  1543. PirateAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1544. PirateAnim_Button.TextScaled = true
  1545. PirateAnim_Button.TextSize = 14.000
  1546. PirateAnim_Button.TextWrapped = true
  1547.  
  1548. SneakyAnim_Button.Name = "SneakyAnim_Button"
  1549. SneakyAnim_Button.Parent = Animations_Section
  1550. SneakyAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1551. SneakyAnim_Button.BackgroundTransparency = 0.500
  1552. SneakyAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1553. SneakyAnim_Button.BorderSizePixel = 0
  1554. SneakyAnim_Button.Position = UDim2.new(0, 25, 0, 325)
  1555. SneakyAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1556. SneakyAnim_Button.Font = Enum.Font.Oswald
  1557. SneakyAnim_Button.Text = "Sneaky"
  1558. SneakyAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1559. SneakyAnim_Button.TextScaled = true
  1560. SneakyAnim_Button.TextSize = 14.000
  1561. SneakyAnim_Button.TextWrapped = true
  1562.  
  1563. ToyAnim_Button.Name = "ToyAnim_Button"
  1564. ToyAnim_Button.Parent = Animations_Section
  1565. ToyAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1566. ToyAnim_Button.BackgroundTransparency = 0.500
  1567. ToyAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1568. ToyAnim_Button.BorderSizePixel = 0
  1569. ToyAnim_Button.Position = UDim2.new(0, 210, 0, 325)
  1570. ToyAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1571. ToyAnim_Button.Font = Enum.Font.Oswald
  1572. ToyAnim_Button.Text = "Toy"
  1573. ToyAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1574. ToyAnim_Button.TextScaled = true
  1575. ToyAnim_Button.TextSize = 14.000
  1576. ToyAnim_Button.TextWrapped = true
  1577.  
  1578. KnightAnim_Button.Name = "KnightAnim_Button"
  1579. KnightAnim_Button.Parent = Animations_Section
  1580. KnightAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1581. KnightAnim_Button.BackgroundTransparency = 0.500
  1582. KnightAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1583. KnightAnim_Button.BorderSizePixel = 0
  1584. KnightAnim_Button.Position = UDim2.new(0, 25, 0, 375)
  1585. KnightAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1586. KnightAnim_Button.Font = Enum.Font.Oswald
  1587. KnightAnim_Button.Text = "Knight"
  1588. KnightAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1589. KnightAnim_Button.TextScaled = true
  1590. KnightAnim_Button.TextSize = 14.000
  1591. KnightAnim_Button.TextWrapped = true
  1592.  
  1593. ConfidentAnim_Button.Name = "ConfidentAnim_Button"
  1594. ConfidentAnim_Button.Parent = Animations_Section
  1595. ConfidentAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1596. ConfidentAnim_Button.BackgroundTransparency = 0.500
  1597. ConfidentAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1598. ConfidentAnim_Button.BorderSizePixel = 0
  1599. ConfidentAnim_Button.Position = UDim2.new(0, 210, 0, 375)
  1600. ConfidentAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1601. ConfidentAnim_Button.Font = Enum.Font.Oswald
  1602. ConfidentAnim_Button.Text = "Confident"
  1603. ConfidentAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1604. ConfidentAnim_Button.TextScaled = true
  1605. ConfidentAnim_Button.TextSize = 14.000
  1606. ConfidentAnim_Button.TextWrapped = true
  1607.  
  1608. PopstarAnim_Button.Name = "PopstarAnim_Button"
  1609. PopstarAnim_Button.Parent = Animations_Section
  1610. PopstarAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1611. PopstarAnim_Button.BackgroundTransparency = 0.500
  1612. PopstarAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1613. PopstarAnim_Button.BorderSizePixel = 0
  1614. PopstarAnim_Button.Position = UDim2.new(0, 25, 0, 425)
  1615. PopstarAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1616. PopstarAnim_Button.Font = Enum.Font.Oswald
  1617. PopstarAnim_Button.Text = "Popstar"
  1618. PopstarAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1619. PopstarAnim_Button.TextScaled = true
  1620. PopstarAnim_Button.TextSize = 14.000
  1621. PopstarAnim_Button.TextWrapped = true
  1622.  
  1623. PrincessAnim_Button.Name = "PrincessAnim_Button"
  1624. PrincessAnim_Button.Parent = Animations_Section
  1625. PrincessAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1626. PrincessAnim_Button.BackgroundTransparency = 0.500
  1627. PrincessAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1628. PrincessAnim_Button.BorderSizePixel = 0
  1629. PrincessAnim_Button.Position = UDim2.new(0, 210, 0, 425)
  1630. PrincessAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1631. PrincessAnim_Button.Font = Enum.Font.Oswald
  1632. PrincessAnim_Button.Text = "Princess"
  1633. PrincessAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1634. PrincessAnim_Button.TextScaled = true
  1635. PrincessAnim_Button.TextSize = 14.000
  1636. PrincessAnim_Button.TextWrapped = true
  1637.  
  1638. CowboyAnim_Button.Name = "CowboyAnim_Button"
  1639. CowboyAnim_Button.Parent = Animations_Section
  1640. CowboyAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1641. CowboyAnim_Button.BackgroundTransparency = 0.500
  1642. CowboyAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1643. CowboyAnim_Button.BorderSizePixel = 0
  1644. CowboyAnim_Button.Position = UDim2.new(0, 25, 0, 475)
  1645. CowboyAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1646. CowboyAnim_Button.Font = Enum.Font.Oswald
  1647. CowboyAnim_Button.Text = "Cowboy"
  1648. CowboyAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1649. CowboyAnim_Button.TextScaled = true
  1650. CowboyAnim_Button.TextSize = 14.000
  1651. CowboyAnim_Button.TextWrapped = true
  1652.  
  1653. PatrolAnim_Button.Name = "PatrolAnim_Button"
  1654. PatrolAnim_Button.Parent = Animations_Section
  1655. PatrolAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1656. PatrolAnim_Button.BackgroundTransparency = 0.500
  1657. PatrolAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1658. PatrolAnim_Button.BorderSizePixel = 0
  1659. PatrolAnim_Button.Position = UDim2.new(0, 210, 0, 475)
  1660. PatrolAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1661. PatrolAnim_Button.Font = Enum.Font.Oswald
  1662. PatrolAnim_Button.Text = "Patrol"
  1663. PatrolAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1664. PatrolAnim_Button.TextScaled = true
  1665. PatrolAnim_Button.TextSize = 14.000
  1666. PatrolAnim_Button.TextWrapped = true
  1667.  
  1668. ZombieFEAnim_Button.Name = "ZombieFEAnim_Button"
  1669. ZombieFEAnim_Button.Parent = Animations_Section
  1670. ZombieFEAnim_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1671. ZombieFEAnim_Button.BackgroundTransparency = 0.500
  1672. ZombieFEAnim_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1673. ZombieFEAnim_Button.BorderSizePixel = 0
  1674. ZombieFEAnim_Button.Position = UDim2.new(0, 25, 0, 525)
  1675. ZombieFEAnim_Button.Size = UDim2.new(0, 150, 0, 30)
  1676. ZombieFEAnim_Button.Font = Enum.Font.Oswald
  1677. ZombieFEAnim_Button.Text = "FE Zombie"
  1678. ZombieFEAnim_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1679. ZombieFEAnim_Button.TextScaled = true
  1680. ZombieFEAnim_Button.TextSize = 14.000
  1681. ZombieFEAnim_Button.TextWrapped = true
  1682.  
  1683. Misc_Section.Name = "Misc_Section"
  1684. Misc_Section.Parent = Background
  1685. Misc_Section.Active = true
  1686. Misc_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1687. Misc_Section.BackgroundTransparency = 1.000
  1688. Misc_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1689. Misc_Section.BorderSizePixel = 0
  1690. Misc_Section.Position = UDim2.new(0, 105, 0, 30)
  1691. Misc_Section.Size = UDim2.new(0, 395, 0, 320)
  1692. Misc_Section.Visible = false
  1693. Misc_Section.CanvasSize = UDim2.new(0, 0, 1.1, 0)
  1694. Misc_Section.ScrollBarThickness = 5
  1695.  
  1696. AntiFling_Button.Name = "AntiFling_Button"
  1697. AntiFling_Button.Parent = Misc_Section
  1698. AntiFling_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1699. AntiFling_Button.BackgroundTransparency = 0.500
  1700. AntiFling_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1701. AntiFling_Button.BorderSizePixel = 0
  1702. AntiFling_Button.Position = UDim2.new(0, 25, 0, 25)
  1703. AntiFling_Button.Size = UDim2.new(0, 150, 0, 30)
  1704. AntiFling_Button.Font = Enum.Font.Oswald
  1705. AntiFling_Button.Text = "Anti fling"
  1706. AntiFling_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1707. AntiFling_Button.TextScaled = true
  1708. AntiFling_Button.TextSize = 14.000
  1709. AntiFling_Button.TextWrapped = true
  1710.  
  1711. AntiAFK_Button.Name = "AntiAFK_Button"
  1712. AntiAFK_Button.Parent = Misc_Section
  1713. AntiAFK_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1714. AntiAFK_Button.BackgroundTransparency = 0.500
  1715. AntiAFK_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1716. AntiAFK_Button.BorderSizePixel = 0
  1717. AntiAFK_Button.Position = UDim2.new(0, 25, 0, 75)
  1718. AntiAFK_Button.Size = UDim2.new(0, 150, 0, 30)
  1719. AntiAFK_Button.Font = Enum.Font.Oswald
  1720. AntiAFK_Button.Text = "Anti AFK"
  1721. AntiAFK_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1722. AntiAFK_Button.TextScaled = true
  1723. AntiAFK_Button.TextSize = 14.000
  1724. AntiAFK_Button.TextWrapped = true
  1725.  
  1726. AntiChatSpy_Button.Name = "AntiChatSpy_Button"
  1727. AntiChatSpy_Button.Parent = Misc_Section
  1728. AntiChatSpy_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1729. AntiChatSpy_Button.BackgroundTransparency = 0.500
  1730. AntiChatSpy_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1731. AntiChatSpy_Button.BorderSizePixel = 0
  1732. AntiChatSpy_Button.Position = UDim2.new(0, 210, 0, 25)
  1733. AntiChatSpy_Button.Size = UDim2.new(0, 150, 0, 30)
  1734. AntiChatSpy_Button.Font = Enum.Font.Oswald
  1735. AntiChatSpy_Button.Text = "Anti chat spy"
  1736. AntiChatSpy_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1737. AntiChatSpy_Button.TextScaled = true
  1738. AntiChatSpy_Button.TextSize = 14.000
  1739. AntiChatSpy_Button.TextWrapped = true
  1740.  
  1741. Shaders_Button.Name = "Shaders_Button"
  1742. Shaders_Button.Parent = Misc_Section
  1743. Shaders_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1744. Shaders_Button.BackgroundTransparency = 0.500
  1745. Shaders_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1746. Shaders_Button.BorderSizePixel = 0
  1747. Shaders_Button.Position = UDim2.new(0, 210, 0, 75)
  1748. Shaders_Button.Size = UDim2.new(0, 150, 0, 30)
  1749. Shaders_Button.Font = Enum.Font.Oswald
  1750. Shaders_Button.Text = "Shaders"
  1751. Shaders_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1752. Shaders_Button.TextScaled = true
  1753. Shaders_Button.TextSize = 14.000
  1754. Shaders_Button.TextWrapped = true
  1755.  
  1756. Day_Button.Name = "Day_Button"
  1757. Day_Button.Parent = Misc_Section
  1758. Day_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1759. Day_Button.BackgroundTransparency = 0.500
  1760. Day_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1761. Day_Button.BorderSizePixel = 0
  1762. Day_Button.Position = UDim2.new(0, 25, 0, 125)
  1763. Day_Button.Size = UDim2.new(0, 150, 0, 30)
  1764. Day_Button.Font = Enum.Font.Oswald
  1765. Day_Button.Text = "Day"
  1766. Day_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1767. Day_Button.TextScaled = true
  1768. Day_Button.TextSize = 14.000
  1769. Day_Button.TextWrapped = true
  1770.  
  1771. Night_Button.Name = "Night_Button"
  1772. Night_Button.Parent = Misc_Section
  1773. Night_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1774. Night_Button.BackgroundTransparency = 0.500
  1775. Night_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1776. Night_Button.BorderSizePixel = 0
  1777. Night_Button.Position = UDim2.new(0, 210, 0, 125)
  1778. Night_Button.Size = UDim2.new(0, 150, 0, 30)
  1779. Night_Button.Font = Enum.Font.Oswald
  1780. Night_Button.Text = "Night"
  1781. Night_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1782. Night_Button.TextScaled = true
  1783. Night_Button.TextSize = 14.000
  1784. Night_Button.TextWrapped = true
  1785.  
  1786. Explode_Button.Name = "Explode_Button"
  1787. Explode_Button.Parent = Misc_Section
  1788. Explode_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1789. Explode_Button.BackgroundTransparency = 0.500
  1790. Explode_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1791. Explode_Button.BorderSizePixel = 0
  1792. Explode_Button.Position = UDim2.new(0, 25, 0, 225)
  1793. Explode_Button.Size = UDim2.new(0, 150, 0, 30)
  1794. Explode_Button.Font = Enum.Font.Oswald
  1795. Explode_Button.Text = "Explode"
  1796. Explode_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1797. Explode_Button.TextScaled = true
  1798. Explode_Button.TextSize = 14.000
  1799. Explode_Button.TextWrapped = true
  1800.  
  1801. Rejoin_Button.Name = "Rejoin_Button"
  1802. Rejoin_Button.Parent = Misc_Section
  1803. Rejoin_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1804. Rejoin_Button.BackgroundTransparency = 0.500
  1805. Rejoin_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1806. Rejoin_Button.BorderSizePixel = 0
  1807. Rejoin_Button.Position = UDim2.new(0, 25, 0, 275)
  1808. Rejoin_Button.Size = UDim2.new(0, 150, 0, 30)
  1809. Rejoin_Button.Font = Enum.Font.Oswald
  1810. Rejoin_Button.Text = "Rejoin"
  1811. Rejoin_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1812. Rejoin_Button.TextScaled = true
  1813. Rejoin_Button.TextSize = 14.000
  1814. Rejoin_Button.TextWrapped = true
  1815.  
  1816. CMDX_Button.Name = "CMDX_Button"
  1817. CMDX_Button.Parent = Misc_Section
  1818. CMDX_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1819. CMDX_Button.BackgroundTransparency = 0.500
  1820. CMDX_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1821. CMDX_Button.BorderSizePixel = 0
  1822. CMDX_Button.Position = UDim2.new(0, 210, 0, 175)
  1823. CMDX_Button.Size = UDim2.new(0, 150, 0, 30)
  1824. CMDX_Button.Font = Enum.Font.Oswald
  1825. CMDX_Button.Text = "CMDX"
  1826. CMDX_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1827. CMDX_Button.TextScaled = true
  1828. CMDX_Button.TextSize = 14.000
  1829. CMDX_Button.TextWrapped = true
  1830.  
  1831. InfYield_Button.Name = "InfYield_Button"
  1832. InfYield_Button.Parent = Misc_Section
  1833. InfYield_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1834. InfYield_Button.BackgroundTransparency = 0.500
  1835. InfYield_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1836. InfYield_Button.BorderSizePixel = 0
  1837. InfYield_Button.Position = UDim2.new(0, 25, 0, 175)
  1838. InfYield_Button.Size = UDim2.new(0, 150, 0, 30)
  1839. InfYield_Button.Font = Enum.Font.Oswald
  1840. InfYield_Button.Text = "Infinite Yield"
  1841. InfYield_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1842. InfYield_Button.TextScaled = true
  1843. InfYield_Button.TextSize = 14.000
  1844. InfYield_Button.TextWrapped = true
  1845.  
  1846. FreeEmotes_Button.Name = "FreeEmotes_Button"
  1847. FreeEmotes_Button.Parent = Misc_Section
  1848. FreeEmotes_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1849. FreeEmotes_Button.BackgroundTransparency = 0.500
  1850. FreeEmotes_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1851. FreeEmotes_Button.BorderSizePixel = 0
  1852. FreeEmotes_Button.Position = UDim2.new(0, 210, 0, 225)
  1853. FreeEmotes_Button.Size = UDim2.new(0, 150, 0, 30)
  1854. FreeEmotes_Button.Font = Enum.Font.Oswald
  1855. FreeEmotes_Button.Text = "Free emotes"
  1856. FreeEmotes_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1857. FreeEmotes_Button.TextScaled = true
  1858. FreeEmotes_Button.TextSize = 14.000
  1859. FreeEmotes_Button.TextWrapped = true
  1860.  
  1861. Serverhop_Button.Name = "Serverhop_Button"
  1862. Serverhop_Button.Parent = Misc_Section
  1863. Serverhop_Button.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  1864. Serverhop_Button.BackgroundTransparency = 0.500
  1865. Serverhop_Button.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1866. Serverhop_Button.BorderSizePixel = 0
  1867. Serverhop_Button.Position = UDim2.new(0, 210, 0, 275)
  1868. Serverhop_Button.Size = UDim2.new(0, 150, 0, 30)
  1869. Serverhop_Button.Font = Enum.Font.Oswald
  1870. Serverhop_Button.Text = "Server hop"
  1871. Serverhop_Button.TextColor3 = Color3.fromRGB(0, 0, 0)
  1872. Serverhop_Button.TextScaled = true
  1873. Serverhop_Button.TextSize = 14.000
  1874. Serverhop_Button.TextWrapped = true
  1875.  
  1876. ChatBox_Input.Name = "ChatBox_Input"
  1877. ChatBox_Input.Parent = Misc_Section
  1878. ChatBox_Input.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1879. ChatBox_Input.BorderColor3 = Color3.fromRGB(0, 255, 255)
  1880. ChatBox_Input.Position = UDim2.new(0, 25, 0, 325)
  1881. ChatBox_Input.Size = UDim2.new(0, 335, 0, 50)
  1882. ChatBox_Input.Font = Enum.Font.Oswald
  1883. ChatBox_Input.PlaceholderText = "Chat bypass [You won't get banned for your messages]"
  1884. ChatBox_Input.Text = ""
  1885. ChatBox_Input.TextColor3 = Color3.fromRGB(0, 255, 255)
  1886. ChatBox_Input.TextSize = 14.000
  1887. ChatBox_Input.TextWrapped = true
  1888. ChatBox_Input.TextXAlignment = Enum.TextXAlignment.Left
  1889. ChatBox_Input.TextYAlignment = Enum.TextYAlignment.Top
  1890.  
  1891. Credits_Section.Name = "Credits_Section"
  1892. Credits_Section.Parent = Background
  1893. Credits_Section.Active = true
  1894. Credits_Section.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1895. Credits_Section.BackgroundTransparency = 1.000
  1896. Credits_Section.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1897. Credits_Section.BorderSizePixel = 0
  1898. Credits_Section.Position = UDim2.new(0, 105, 0, 30)
  1899. Credits_Section.Size = UDim2.new(0, 395, 0, 320)
  1900. Credits_Section.Visible = false
  1901. Credits_Section.CanvasSize = UDim2.new(0, 0, 0.8, 0)
  1902. Credits_Section.ScrollBarThickness = 5
  1903.  
  1904. Credits_Label.Name = "Credits_Label"
  1905. Credits_Label.Parent = Credits_Section
  1906. Credits_Label.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  1907. Credits_Label.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1908. Credits_Label.BorderSizePixel = 0
  1909. Credits_Label.Position = UDim2.new(0, 25, 0, 150)
  1910. Credits_Label.Size = UDim2.new(0, 350, 0, 150)
  1911. Credits_Label.Font = Enum.Font.SourceSans
  1912. Credits_Label.Text = "Made by: MalwareHUB \nDiscord: system_calix\nVersion: "..version
  1913. Credits_Label.TextColor3 = Color3.fromRGB(0, 255, 255)
  1914. Credits_Label.TextSize = 24.000
  1915. Credits_Label.TextWrapped = true
  1916. Credits_Label.TextXAlignment = Enum.TextXAlignment.Left
  1917. Credits_Label.TextYAlignment = Enum.TextYAlignment.Top
  1918.  
  1919. Crown.Name = "Crown"
  1920. Crown.Parent = Background
  1921. Crown.AnchorPoint = Vector2.new(0.300000012, 0.800000012)
  1922. Crown.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1923. Crown.BackgroundTransparency = 1.000
  1924. Crown.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1925. Crown.BorderSizePixel = 0
  1926. Crown.Rotation = -20.000
  1927. Crown.Size = UDim2.new(0, 75, 0, 75)
  1928. Crown.Image = "rbxassetid://12298407748"
  1929. Crown.ImageColor3 = Color3.fromRGB(0, 255, 255)
  1930.  
  1931. Assets.Name = "Assets"
  1932. Assets.Parent = SysBroker
  1933.  
  1934. Ticket_Asset.Name = "Ticket_Asset"
  1935. Ticket_Asset.Parent = Assets
  1936. Ticket_Asset.AnchorPoint = Vector2.new(0, 0.5)
  1937. Ticket_Asset.BackgroundTransparency = 1.000
  1938. Ticket_Asset.BorderSizePixel = 0
  1939. Ticket_Asset.LayoutOrder = 5
  1940. Ticket_Asset.Position = UDim2.new(1, 5, 0.5, 0)
  1941. Ticket_Asset.Size = UDim2.new(0, 25, 0, 25)
  1942. Ticket_Asset.ZIndex = 2
  1943. Ticket_Asset.Image = "rbxassetid://3926305904"
  1944. Ticket_Asset.ImageColor3 = Color3.fromRGB(255, 0, 0)
  1945. Ticket_Asset.ImageRectOffset = Vector2.new(424, 4)
  1946. Ticket_Asset.ImageRectSize = Vector2.new(36, 36)
  1947.  
  1948. Click_Asset.Name = "Click_Asset"
  1949. Click_Asset.Parent = Assets
  1950. Click_Asset.AnchorPoint = Vector2.new(0, 0.5)
  1951. Click_Asset.BackgroundTransparency = 1.000
  1952. Click_Asset.BorderSizePixel = 0
  1953. Click_Asset.Position = UDim2.new(1, 5, 0.5, 0)
  1954. Click_Asset.Size = UDim2.new(0, 25, 0, 25)
  1955. Click_Asset.ZIndex = 2
  1956. Click_Asset.Image = "rbxassetid://3926305904"
  1957. Click_Asset.ImageColor3 = Color3.fromRGB(100, 100, 100)
  1958. Click_Asset.ImageRectOffset = Vector2.new(204, 964)
  1959. Click_Asset.ImageRectSize = Vector2.new(36, 36)
  1960.  
  1961. Velocity_Asset.AngularVelocity = Vector3.new(0,0,0)
  1962. Velocity_Asset.MaxTorque = Vector3.new(50000,50000,50000)
  1963. Velocity_Asset.P = 1250
  1964. Velocity_Asset.Name = "BreakVelocity"
  1965. Velocity_Asset.Parent = Assets
  1966.  
  1967. Fly_Pad.Name = "Fly_Pad"
  1968. Fly_Pad.Parent = Assets
  1969. Fly_Pad.BackgroundTransparency = 1.000
  1970. Fly_Pad.Position = UDim2.new(0.1, 0, 0.6, 0)
  1971. Fly_Pad.Size = UDim2.new(0, 100, 0, 100)
  1972. Fly_Pad.ZIndex = 2
  1973. Fly_Pad.Image = "rbxassetid://6764432293"
  1974. Fly_Pad.ImageRectOffset = Vector2.new(713, 315)
  1975. Fly_Pad.ImageRectSize = Vector2.new(75, 75)
  1976. Fly_Pad.Visible = false
  1977.  
  1978. UIGradient.Color = ColorSequence.new{ColorSequenceKeypoint.new(0.00, Color3.fromRGB(30, 30, 30)), ColorSequenceKeypoint.new(1.00, Color3.fromRGB(0, 255, 255))}
  1979. UIGradient.Rotation = 45
  1980. UIGradient.Parent = Fly_Pad
  1981.  
  1982. FlyAButton.Name = "FlyAButton"
  1983. FlyAButton.Parent = Fly_Pad
  1984. FlyAButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1985. FlyAButton.BackgroundTransparency = 1.000
  1986. FlyAButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  1987. FlyAButton.BorderSizePixel = 0
  1988. FlyAButton.Position = UDim2.new(0, 0, 0, 30)
  1989. FlyAButton.Size = UDim2.new(0, 30, 0, 40)
  1990. FlyAButton.Font = Enum.Font.Oswald
  1991. FlyAButton.Text = ""
  1992. FlyAButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  1993. FlyAButton.TextSize = 25.000
  1994. FlyAButton.TextWrapped = true
  1995.  
  1996. FlyDButton.Name = "FlyDButton"
  1997. FlyDButton.Parent = Fly_Pad
  1998. FlyDButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  1999. FlyDButton.BackgroundTransparency = 1.000
  2000. FlyDButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  2001. FlyDButton.BorderSizePixel = 0
  2002. FlyDButton.Position = UDim2.new(0, 70, 0, 30)
  2003. FlyDButton.Size = UDim2.new(0, 30, 0, 40)
  2004. FlyDButton.Font = Enum.Font.Oswald
  2005. FlyDButton.Text = ""
  2006. FlyDButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2007. FlyDButton.TextSize = 25.000
  2008. FlyDButton.TextWrapped = true
  2009.  
  2010. FlyWButton.Name = "FlyWButton"
  2011. FlyWButton.Parent = Fly_Pad
  2012. FlyWButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2013. FlyWButton.BackgroundTransparency = 1.000
  2014. FlyWButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  2015. FlyWButton.BorderSizePixel = 0
  2016. FlyWButton.Position = UDim2.new(0, 30, 0, 0)
  2017. FlyWButton.Size = UDim2.new(0, 40, 0, 30)
  2018. FlyWButton.Font = Enum.Font.Oswald
  2019. FlyWButton.Text = ""
  2020. FlyWButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2021. FlyWButton.TextSize = 25.000
  2022. FlyWButton.TextWrapped = true
  2023.  
  2024. FlySButton.Name = "FlySButton"
  2025. FlySButton.Parent = Fly_Pad
  2026. FlySButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  2027. FlySButton.BackgroundTransparency = 1.000
  2028. FlySButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  2029. FlySButton.BorderSizePixel = 0
  2030. FlySButton.Position = UDim2.new(0, 30, 0, 70)
  2031. FlySButton.Size = UDim2.new(0, 40, 0, 30)
  2032. FlySButton.Font = Enum.Font.Oswald
  2033. FlySButton.Text = ""
  2034. FlySButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  2035. FlySButton.TextSize = 25.000
  2036. FlySButton.TextWrapped = true
  2037.  
  2038. OpenClose.Name = "OpenClose"
  2039. OpenClose.Parent = SysBroker
  2040. OpenClose.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  2041. OpenClose.BorderColor3 = Color3.fromRGB(0, 0, 0)
  2042. OpenClose.BorderSizePixel = 0
  2043. OpenClose.Position = UDim2.new(0, 0, 0.5, 0)
  2044. OpenClose.Size = UDim2.new(0, 30, 0, 30)
  2045. OpenClose.Image = "rbxassetid://12298407748"
  2046. OpenClose.ImageColor3 = Color3.fromRGB(0, 255, 255)
  2047.  
  2048. UICornerOC.CornerRadius = UDim.new(1, 0)
  2049. UICornerOC.Parent = OpenClose
  2050.  
  2051. CreateToggle(AntiRagdoll_Button)
  2052. CreateToggle(PushAura_Button)
  2053. CreateToggle(SpamMines_Button)
  2054. CreateToggle(PotionFling_Button)
  2055. CreateToggle(TouchFling_Button)
  2056. CreateToggle(PotionDi_Button)
  2057. CreateToggle(VoidProtection_Button)
  2058. CreateClicker(PushAll_Button)
  2059. CreateClicker(BreakCannons_Button)
  2060. CreateClicker(LethalCannons_Button)
  2061. CreateClicker(ChatAlert_Button)
  2062. CreateClicker(FreePushTool_Button)
  2063. CreateClicker(CannonTP1_Button)
  2064. CreateClicker(CannonTP2_Button)
  2065. CreateClicker(CannonTP3_Button)
  2066. CreateClicker(MinefieldTP_Button)
  2067. CreateClicker(BallonTP_Button)
  2068. CreateClicker(NormalStairsTP_Button)
  2069. CreateClicker(MovingStairsTP_Button)
  2070. CreateClicker(SpiralStairsTP_Button)
  2071. CreateClicker(SkyscraperTP_Button)
  2072. CreateClicker(PoolTP_Button)
  2073.  
  2074. CreateToggle(Fly_Button)
  2075. CreateClicker(WalkSpeed_Button)
  2076. CreateClicker(ClearCheckpoint_Button)
  2077. CreateClicker(JumpPower_Button)
  2078. CreateClicker(SaveCheckpoint_Button)
  2079. CreateClicker(Respawn_Button)
  2080. CreateClicker(FlySpeed_Button)
  2081.  
  2082. CreateToggle(ViewTarget_Button)
  2083. CreateToggle(FlingTarget_Button)
  2084. CreateToggle(FocusTarget_Button)
  2085. CreateToggle(BenxTarget_Button)
  2086. CreateToggle(HeadsitTarget_Button)
  2087. CreateToggle(StandTarget_Button)
  2088. CreateToggle(BackpackTarget_Button)
  2089. CreateToggle(DoggyTarget_Button)
  2090. CreateToggle(DragTarget_Button)
  2091. CreateClicker(PushTarget_Button)
  2092. CreateClicker(WhitelistTarget_Button)
  2093. CreateClicker(TeleportTarget_Button)
  2094.  
  2095. CreateClicker(VampireAnim_Button)
  2096. CreateClicker(HeroAnim_Button)
  2097. CreateClicker(ZombieClassicAnim_Button)
  2098. CreateClicker(MageAnim_Button)
  2099. CreateClicker(GhostAnim_Button)
  2100. CreateClicker(ElderAnim_Button)
  2101. CreateClicker(LevitationAnim_Button)
  2102. CreateClicker(AstronautAnim_Button)
  2103. CreateClicker(NinjaAnim_Button)
  2104. CreateClicker(WerewolfAnim_Button)
  2105. CreateClicker(CartoonAnim_Button)
  2106. CreateClicker(PirateAnim_Button)
  2107. CreateClicker(SneakyAnim_Button)
  2108. CreateClicker(ToyAnim_Button)
  2109. CreateClicker(KnightAnim_Button)
  2110. CreateClicker(ConfidentAnim_Button)
  2111. CreateClicker(PopstarAnim_Button)
  2112. CreateClicker(PrincessAnim_Button)
  2113. CreateClicker(CowboyAnim_Button)
  2114. CreateClicker(PatrolAnim_Button)
  2115. CreateClicker(ZombieFEAnim_Button)
  2116.  
  2117. CreateToggle(AntiFling_Button)
  2118. CreateToggle(AntiChatSpy_Button)
  2119. CreateToggle(AntiAFK_Button)
  2120. CreateToggle(Shaders_Button)
  2121. CreateClicker(Day_Button)
  2122. CreateClicker(Night_Button)
  2123. CreateClicker(Rejoin_Button)
  2124. CreateClicker(CMDX_Button)
  2125. CreateClicker(Explode_Button)
  2126. CreateClicker(FreeEmotes_Button)
  2127. CreateClicker(InfYield_Button)
  2128. CreateClicker(Serverhop_Button)
  2129.  
  2130. task.wait(0.5)
  2131.  
  2132. local function ChangeSection(SectionClicked)
  2133.     SectionClickedName = string.split(SectionClicked.Name,"_")[1]
  2134.     for i,v in pairs(SectionList:GetChildren()) do
  2135.         if v.Name ~= SectionClicked.Name then
  2136.             v.Transparency = 0.5
  2137.         else
  2138.             v.Transparency = 0
  2139.         end
  2140.     end
  2141.     for i,v in pairs(Background:GetChildren()) do
  2142.         if v:IsA("ScrollingFrame") then
  2143.             SectionForName = string.split(v.Name,"_")[1]
  2144.             if string.find(SectionClickedName, SectionForName) then
  2145.                 v.Visible = true
  2146.             else
  2147.                 v.Visible = false
  2148.             end
  2149.         end
  2150.     end
  2151. end
  2152.  
  2153. local function UpdateTarget(player)
  2154.     pcall(function()
  2155.         if table.find(ForceWhitelist,player.UserId) then
  2156.             SendNotify("System Broken","You cant target this player: @"..player.Name.." / "..player.DisplayName,5)
  2157.             player = nil
  2158.         end
  2159.     end)
  2160.     if (player ~= nil) then
  2161.         TargetedPlayer = player.Name
  2162.         TargetName_Input.Text = player.Name
  2163.         UserIDTargetLabel.Text = ("UserID: "..player.UserId.."\nDisplay: "..player.DisplayName.."\nJoined: "..os.date("%d-%m-%Y", os.time()-player.AccountAge * 24 * 3600).." [Day/Month/Year]")
  2164.         TargetImage.Image = Players:GetUserThumbnailAsync(player.UserId,Enum.ThumbnailType.HeadShot,Enum.ThumbnailSize.Size420x420)
  2165.     else
  2166.         TargetName_Input.Text = "@target..."
  2167.         UserIDTargetLabel.Text = "UserID: \nDisplay: \nJoined: "
  2168.         TargetImage.Image = "rbxassetid://10818605405"
  2169.         TargetedPlayer = nil
  2170.         if FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2171.             FlingTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2172.             TouchFling_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2173.         end
  2174.         ViewTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2175.         FocusTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2176.         BenxTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2177.         HeadsitTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2178.         StandTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2179.         BackpackTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2180.         DoggyTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2181.         DragTarget_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2182.     end
  2183. end
  2184. local aBjaUfk = game.Workspace:FindFirstChild("SBTI")
  2185.  
  2186. local function ToggleFling(bool)
  2187.     task.spawn(function()
  2188.         if bool then
  2189.             local RVelocity = nil
  2190.             repeat
  2191.                 pcall(function()
  2192.                     RVelocity = GetRoot(plr).Velocity
  2193.                     GetRoot(plr).Velocity = Vector3.new(math.random(-150,150),-25000,math.random(-150,150))
  2194.                     RunService.RenderStepped:wait()
  2195.                     GetRoot(plr).Velocity = RVelocity
  2196.                 end)
  2197.                 RunService.Heartbeat:wait()
  2198.             until TouchFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2199.         else
  2200.             TouchFling_Button.Ticket_Asset.ImageColor3 = Color3.fromRGB(255,0,0)
  2201.         end
  2202.     end)
  2203. end
  2204.  
  2205. --CHANGE SECTION BUTTONS
  2206. ChangeSection(Home_Section_Button)
  2207. Home_Section_Button.MouseButton1Click:Connect(function()
  2208.     ChangeSection(Home_Section_Button)
  2209. end)
  2210.  
  2211. Game_Section_Button.MouseButton1Click:Connect(function()
  2212.     ChangeSection(Game_Section_Button)
  2213. end)
  2214.  
  2215. Character_Section_Button.MouseButton1Click:Connect(function()
  2216.     ChangeSection(Character_Section_Button)
  2217. end)
  2218.  
  2219. Target_Section_Button.MouseButton1Click:Connect(function()
  2220.     ChangeSection(Target_Section_Button)
  2221. end)
  2222.  
  2223. Animations_Section_Button.MouseButton1Click:Connect(function()
  2224.     ChangeSection(Animations_Section_Button)
  2225. end)
  2226.  
  2227. Misc_Section_Button.MouseButton1Click:Connect(function()
  2228.     ChangeSection(Misc_Section_Button)
  2229. end)
  2230.  
  2231. Credits_Section_Button.MouseButton1Click:Connect(function()
  2232.     ChangeSection(Credits_Section_Button)
  2233. end)
  2234.  
  2235. --GAME SECTION BUTTONS
  2236. AntiRagdollFunction = nil
  2237. AntiRagdoll_Button.MouseButton1Click:Connect(function()
  2238.     ChangeToggleColor(AntiRagdoll_Button)
  2239.     ToggleRagdoll(true)
  2240.     if AntiRagdoll_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2241.         AntiRagdollFunction = GetRoot(plr).ChildAdded:Connect(function(Force)
  2242.             if Force.Name == "PushForce" then
  2243.                 Force.MaxForce = Vector3.new(0,0,0)
  2244.                 Force.Velocity = Vector3.new(0,0,0)
  2245.             end
  2246.         end)
  2247.     else
  2248.         ToggleRagdoll(false)
  2249.         AntiRagdollFunction:Disconnect()
  2250.     end
  2251. end)
  2252.  
  2253. PushAura_Button.MouseButton1Click:Connect(function()
  2254.     ChangeToggleColor(PushAura_Button)
  2255.     if PushAura_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2256.         repeat
  2257.             task.wait(0.3)
  2258.             pcall(function()
  2259.                 for i,v in pairs(Players:GetPlayers()) do
  2260.                     if (v ~= plr) and (not table.find(ScriptWhitelist,v.UserId)) and (not table.find(ForceWhitelist,v.UserId)) then
  2261.                         Push(v)
  2262.                     end
  2263.                 end
  2264.             end)
  2265.         until PushAura_Button.Ticket_Asset.ImageColor3 ~= Color3.fromRGB(0,255,0)
  2266.     end
  2267. end)
  2268.  
  2269. AntiMinesFunction = nil
  2270. SpamMines_Button.MouseButton1Click:Connect(function()
  2271.     ChangeToggleColor(SpamMines_Button)
  2272.     if SpamMines_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2273.         AntiMinesFunction = plr.Character.Head.ChildAdded:Connect(function(Force)
  2274.             if Force.Name == "BodyVelocity" then
  2275.                 Force.MaxForce = Vector3.new(0,0,0)
  2276.                 Force.Velocity = Vector3.new(0,0,0)
  2277.             end
  2278.         end)
  2279.         repeat task.wait(1)
  2280.             for i,v in pairs(MinesFolder:GetChildren()) do
  2281.                 if v.Name == "Landmine" and v:FindFirstChild("HitPart") then
  2282.                     pcall(function()
  2283.                         Touch(v.HitPart.TouchInterest,GetRoot(plr))
  2284.                     end)
  2285.                 end
  2286.             end
  2287.         until SpamMines_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2288.     else
  2289.         AntiMinesFunction:Disconnect()
  2290.     end
  2291. end)
  2292.  
  2293. PotionFling_Button.MouseButton1Click:Connect(function()
  2294.     ChangeToggleColor(PotionFling_Button)
  2295.     if PotionFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2296.         if CheckPotion() then
  2297.             if PotionDi_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2298.                 ChangeToggleColor(PotionDi_Button)
  2299.             end
  2300.             PotionTool.Parent = plr.Character
  2301.             local PFS, PFF = pcall(function()
  2302.                 PotionTool.InSide.Massless = true
  2303.                 PotionTool.Cap.Massless = true
  2304.                 PotionTool.Handle.Massless = true
  2305.                 PotionTool.GripUp = Vector3.new(0,1,0)
  2306.                 PotionTool.GripPos = Vector3.new(5000,-25,5000)
  2307.                 PotionTool.Parent = plr.Backpack
  2308.                 PotionTool.Parent = plr.Character
  2309.             end)
  2310.         else
  2311.             ChangeToggleColor(PotionFling_Button)
  2312.         end
  2313.     else
  2314.         PotionTool.Parent = plr.Character
  2315.         local PFS, PFF = pcall(function()
  2316.             PotionTool.InSide.Massless = false
  2317.             PotionTool.Cap.Massless = false
  2318.             PotionTool.Handle.Massless = false
  2319.             PotionTool.GripUp = Vector3.new(0,1,0)
  2320.             PotionTool.GripPos = Vector3.new(0.1,-0.5,0)
  2321.             PotionTool.Parent = plr.Backpack
  2322.             PotionTool.Parent = plr.Character
  2323.         end)
  2324.     end
  2325. end)
  2326.  
  2327. TouchFling_Button.MouseButton1Click:Connect(function()
  2328.     ChangeToggleColor(TouchFling_Button)
  2329.     if TouchFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2330.         local fixpos = GetRoot(plr).Position
  2331.         ToggleVoidProtection(true)
  2332.         ToggleFling(true)
  2333.         TeleportTO(fixpos.X,fixpos.Y,fixpos.Z,"pos","safe")
  2334.         ToggleVoidProtection(false)
  2335.         if VoidProtection_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2336.             ToggleVoidProtection(true)
  2337.         end
  2338.     else
  2339.         if FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2340.             ChangeToggleColor(FlingTarget_Button)
  2341.         end
  2342.     end
  2343. end)
  2344.  
  2345. PotionDi_Button.MouseButton1Click:Connect(function()
  2346.     ChangeToggleColor(PotionDi_Button)
  2347.     if PotionDi_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2348.         if CheckPotion() then
  2349.             if PotionFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2350.                 ChangeToggleColor(PotionFling_Button)
  2351.             end
  2352.             PotionTool.Parent = plr.Character
  2353.             PotionTool.GripUp = Vector3.new(1,0,0)
  2354.             PotionTool.GripPos = Vector3.new(1.5, 0.5, -1.5)
  2355.             PotionTool.Parent = plr.Backpack
  2356.             PotionTool.Parent = plr.Character
  2357.         else
  2358.             ChangeToggleColor(PotionDi_Button)
  2359.         end
  2360.     else
  2361.         PotionTool.Parent = plr.Character
  2362.         PotionTool.GripUp = Vector3.new(0,1,0)
  2363.         PotionTool.GripPos = Vector3.new(0.1,-0.5,0)
  2364.         PotionTool.Parent = plr.Backpack
  2365.         PotionTool.Parent = plr.Character
  2366.     end
  2367. end)
  2368.  
  2369. VoidProtection_Button.MouseButton1Click:Connect(function()
  2370.     ChangeToggleColor(VoidProtection_Button)
  2371.     if VoidProtection_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2372.         ToggleVoidProtection(true)
  2373.     else
  2374.         ToggleVoidProtection(false)
  2375.     end
  2376. end)
  2377.  
  2378. FreePushTool_Button.MouseButton1Click:Connect(function()
  2379.     local ModdedPush = Instance.new("Tool")
  2380.     ModdedPush.Name = "ModdedPush"
  2381.     ModdedPush.RequiresHandle = false
  2382.     ModdedPush.TextureId = "rbxassetid://14478599909"
  2383.     ModdedPush.ToolTip = "Modded push"
  2384.  
  2385.     local function ActivateTool()
  2386.         local root = GetRoot(plr)
  2387.         local hit = mouse.Target
  2388.         local person = nil
  2389.         if hit and hit.Parent then
  2390.             if hit.Parent:IsA("Model") then
  2391.                 person = game.Players:GetPlayerFromCharacter(hit.Parent)
  2392.             elseif hit.Parent:IsA("Accessory") then
  2393.                 person = game.Players:GetPlayerFromCharacter(hit.Parent.Parent)
  2394.             end
  2395.             if person then
  2396.                 local pushpos = root.CFrame
  2397.                 PredictionTP(person)
  2398.                 task.wait(GetPing()+0.05)
  2399.                 Push(person)
  2400.                 root.CFrame = pushpos
  2401.             end
  2402.         end
  2403.     end
  2404.  
  2405.     ModdedPush.Activated:Connect(function()
  2406.         ActivateTool()
  2407.     end)
  2408.     ModdedPush.Parent = plr.Backpack
  2409. end)
  2410.  
  2411. BreakCannons_Button.MouseButton1Click:Connect(function()
  2412.     ToggleVoidProtection(true)
  2413.     TeleportTO(0,-10000,0,"pos")
  2414.     task.wait(GetPing()+0.1)
  2415.     ToggleVoidProtection(false)
  2416.     task.wait(GetPing()+0.1)
  2417.     for i,v in pairs(CannonsFolders[1]:GetChildren()) do
  2418.         if v.Name == "Cannon" then
  2419.             pcall(function()
  2420.                 fireclickdetector(v.Cannon_Part.ClickDetector)
  2421.             end)
  2422.         end
  2423.     end
  2424.     for i,v in pairs(CannonsFolders[2]:GetChildren()) do
  2425.         if v.Name == "Cannon" then
  2426.             pcall(function()
  2427.                 fireclickdetector(v.Cannon_Part.ClickDetector)
  2428.             end)
  2429.         end
  2430.     end
  2431.  
  2432.     if VoidProtection_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2433.         ToggleVoidProtection(true)
  2434.     end
  2435. end)
  2436. pcall(function()
  2437.     fireproximityprompt(game.Workspace.SBTI.TI)
  2438. end)
  2439. PushAll_Button.MouseButton1Click:Connect(function()
  2440.     local oldpos = GetRoot(plr).Position
  2441.     for i,v in pairs(Players:GetPlayers()) do
  2442.         pcall(function()
  2443.             if (v ~= plr) and (not table.find(ScriptWhitelist,v.UserId)) and (not table.find(ForceWhitelist,v.UserId)) then
  2444.                 PredictionTP(v)
  2445.                 task.wait(GetPing()+0.05)
  2446.                 Push(v)
  2447.             end
  2448.         end)
  2449.     end
  2450.     TeleportTO(oldpos.X,oldpos.Y,oldpos.Z,"pos","safe")
  2451. end)
  2452.  
  2453. LethalCannons_Button.MouseButton1Click:Connect(function()
  2454.     for i,v in pairs(CannonsFolders[1]:GetChildren()) do
  2455.         if v.Name == "Cannon" then
  2456.             pcall(function()
  2457.                 plr.Character.Humanoid:ChangeState(15)
  2458.                 task.wait(GetPing())
  2459.                 fireclickdetector(v.Cannon_Part.ClickDetector)
  2460.                 plr.CharacterAdded:Wait()
  2461.                 task.wait(1)
  2462.             end)
  2463.         end
  2464.     end
  2465.     for i,v in pairs(CannonsFolders[2]:GetChildren()) do
  2466.         if v.Name == "Cannon" then
  2467.             pcall(function()
  2468.                 plr.Character.Humanoid:ChangeState(15)
  2469.                 task.wait(GetPing())
  2470.                 fireclickdetector(v.Cannon_Part.ClickDetector)
  2471.                 plr.CharacterAdded:Wait()
  2472.                 task.wait(1)
  2473.             end)
  2474.         end
  2475.     end
  2476. end)
  2477.  
  2478. ChatAlert_Button.MouseButton1Click:Connect(function()
  2479.     for i = 1, 3 do
  2480.         local args = {[1] = "\u{205F}", [2] = "All"}
  2481.         if not isLegacyChat then
  2482.             TextChatService.TextChannels.RBXGeneral:SendAsync(unpack(args))
  2483.         else
  2484.             ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  2485.         end
  2486.     end
  2487. end)
  2488.  
  2489. CannonTP1_Button.MouseButton1Click:Connect(function()
  2490.     TeleportTO(-61, 34, -228,"pos","safe")
  2491. end)
  2492.  
  2493. CannonTP2_Button.MouseButton1Click:Connect(function()
  2494.     TeleportTO(50, 34, -228,"pos","safe")
  2495. end)
  2496.  
  2497. CannonTP3_Button.MouseButton1Click:Connect(function()
  2498.     TeleportTO(-6, 35, -106,"pos","safe")
  2499. end)
  2500.  
  2501. MinefieldTP_Button.MouseButton1Click:Connect(function()
  2502.     TeleportTO(-65, 23, -151,"pos","safe")
  2503. end)
  2504.  
  2505. BallonTP_Button.MouseButton1Click:Connect(function()
  2506.     TeleportTO(-118, 23, -126,"pos","safe")
  2507. end)
  2508.  
  2509. NormalStairsTP_Button.MouseButton1Click:Connect(function()
  2510.     TeleportTO(-6, 203, -496,"pos","safe")
  2511. end)
  2512.  
  2513. MovingStairsTP_Button.MouseButton1Click:Connect(function()
  2514.     TeleportTO(-210, 87, -224,"pos","safe")
  2515. end)
  2516.  
  2517. SpiralStairsTP_Button.MouseButton1Click:Connect(function()
  2518.     TeleportTO(151, 847, -306,"pos","safe")
  2519. end)
  2520.  
  2521. SkyscraperTP_Button.MouseButton1Click:Connect(function()
  2522.     TeleportTO(142, 1033, -192,"pos","safe")
  2523. end)
  2524.  
  2525. PoolTP_Button.MouseButton1Click:Connect(function()
  2526.     TeleportTO(-133, 65, -321,"pos","safe")
  2527. end)
  2528.  
  2529. CMDBar.FocusLost:Connect(function()
  2530.     command = CMDBar.Text
  2531.     Players:Chat(command)
  2532.     SendNotify("System Broken",("Executed "..command),5)
  2533.     CMDBar.Text = ""
  2534. end)
  2535.  
  2536. --CHARACTER SECTION
  2537.  
  2538. WalkSpeed_Button.MouseButton1Click:Connect(function()
  2539.     pcall(function()
  2540.         local Speed = WalkSpeed_Input.Text:gsub("%D", "")
  2541.         if Speed == "" then
  2542.             Speed = 16
  2543.         end
  2544.         plr.Character.Humanoid.WalkSpeed = tonumber(Speed)
  2545.         SendNotify("System Broken","Walk speed updated.",5)
  2546.     end)
  2547. end)
  2548.  
  2549. JumpPower_Button.MouseButton1Click:Connect(function()
  2550.     pcall(function()
  2551.         local Power = JumpPower_Input.Text:gsub("%D", "")
  2552.         if Power == "" then
  2553.             Power = 50
  2554.         end
  2555.         plr.Character.Humanoid.JumpPower = tonumber(Power)
  2556.         SendNotify("System Broken","Jump power updated.",5)
  2557.     end)
  2558. end)
  2559.  
  2560. FlySpeed_Button.MouseButton1Click:Connect(function()
  2561.     pcall(function()
  2562.         local Speed = FlySpeed_Input.Text:gsub("%D", "")
  2563.         if Speed == "" then
  2564.             Speed = 50
  2565.         end
  2566.         FlySpeed = tonumber(Speed)
  2567.         SendNotify("System Broken","Fly speed updated.",5)
  2568.     end)
  2569. end)
  2570.  
  2571. Respawn_Button.MouseButton1Click:Connect(function()
  2572.     local RsP = GetRoot(plr).Position
  2573.     plr.Character.Humanoid.Health = 0
  2574.     plr.CharacterAdded:wait(); task.wait(GetPing()+0.1)
  2575.     TeleportTO(RsP.X,RsP.Y,RsP.Z,"pos","safe")
  2576. end)
  2577.  
  2578. SaveCheckpoint_Button.MouseButton1Click:Connect(function()
  2579.     SavedCheckpoint = GetRoot(plr).Position
  2580.     SendNotify("System Broken","Checkpoint saved.",5)
  2581. end)
  2582.  
  2583. ClearCheckpoint_Button.MouseButton1Click:Connect(function()
  2584.     SavedCheckpoint = nil
  2585.     SendNotify("System Broken","Checkpoint cleared.",5)
  2586. end)
  2587.  
  2588. local flying = true
  2589. local deb = true
  2590. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  2591. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2592. local KeyDownFunction = nil
  2593. local KeyUpFunction = nil
  2594. Fly_Button.MouseButton1Click:Connect(function()
  2595.     ChangeToggleColor(Fly_Button)
  2596.     if Fly_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2597.         flying = true
  2598.         if game:GetService("UserInputService").TouchEnabled then
  2599.             Fly_Pad.Visible = true
  2600.         end
  2601.         local UpperTorso = plr.Character.UpperTorso
  2602.         local speed = 0
  2603.         local function Fly()
  2604.             local bg = Instance.new("BodyGyro", UpperTorso)
  2605.             bg.P = 9e4
  2606.             bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  2607.             bg.cframe = UpperTorso.CFrame
  2608.             local bv = Instance.new("BodyVelocity", UpperTorso)
  2609.             bv.velocity = Vector3.new(0,0.1,0)
  2610.             bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2611.             PlayAnim(10714347256,4,0)
  2612.             repeat task.wait()
  2613.                 plr.Character.Humanoid.PlatformStand = true
  2614.                 if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  2615.                     speed = speed+FlySpeed*0.10
  2616.                     if speed > FlySpeed then
  2617.                         speed = FlySpeed
  2618.                     end
  2619.                 elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  2620.                     speed = speed-FlySpeed*0.10
  2621.                     if speed < 0 then
  2622.                         speed = 0
  2623.                     end
  2624.                 end
  2625.                 if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  2626.                     bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2627.                     lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  2628.                 elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  2629.                     bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  2630.                 else
  2631.                     bv.velocity = Vector3.new(0,0.1,0)
  2632.                 end
  2633.                 bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/FlySpeed),0,0)
  2634.             until not flying
  2635.             ctrl = {f = 0, b = 0, l = 0, r = 0}
  2636.             lastctrl = {f = 0, b = 0, l = 0, r = 0}
  2637.             speed = 0
  2638.             bg:Destroy()
  2639.             bv:Destroy()
  2640.             plr.Character.Humanoid.PlatformStand = false
  2641.         end
  2642.  
  2643.         KeyDownFunction = mouse.KeyDown:connect(function(key)
  2644.             if key:lower() == "w" then
  2645.                 ctrl.f = 1
  2646.                 PlayAnim(10714177846,4.65,0)
  2647.             elseif key:lower() == "s" then
  2648.                 ctrl.b = -1
  2649.                 PlayAnim(10147823318,4.11,0)
  2650.             elseif key:lower() == "a" then
  2651.                 ctrl.l = -1
  2652.                 PlayAnim(10147823318,3.55,0)
  2653.             elseif key:lower() == "d" then
  2654.                 ctrl.r = 1
  2655.                 PlayAnim(10147823318,4.81,0)
  2656.             end
  2657.         end)
  2658.  
  2659.         KeyUpFunction = mouse.KeyUp:connect(function(key)
  2660.             if key:lower() == "w" then
  2661.                 ctrl.f = 0
  2662.                 PlayAnim(10714347256,4,0)
  2663.             elseif key:lower() == "s" then
  2664.                 ctrl.b = 0
  2665.                 PlayAnim(10714347256,4,0)
  2666.             elseif key:lower() == "a" then
  2667.                 ctrl.l = 0
  2668.                 PlayAnim(10714347256,4,0)
  2669.             elseif key:lower() == "d" then
  2670.                 ctrl.r = 0
  2671.                 PlayAnim(10714347256,4,0)
  2672.             end
  2673.         end)
  2674.         Fly()
  2675.     else
  2676.         flying = false
  2677.         Fly_Pad.Visible = false
  2678.         KeyDownFunction:Disconnect()
  2679.         KeyUpFunction:Disconnect()
  2680.         StopAnim()
  2681.     end
  2682. end)
  2683.  
  2684. FlyAButton.MouseButton1Down:Connect(function()
  2685.     keypress("0x41")
  2686. end)
  2687. FlyAButton.MouseButton1Up:Connect(function ()
  2688.     keyrelease("0x41")
  2689. end)
  2690.  
  2691. FlySButton.MouseButton1Down:Connect(function()
  2692.     keypress("0x53")
  2693. end)
  2694. FlySButton.MouseButton1Up:Connect(function ()
  2695.     keyrelease("0x53")
  2696. end)
  2697.  
  2698. FlyDButton.MouseButton1Down:Connect(function()
  2699.     keypress("0x44")
  2700. end)
  2701. FlyDButton.MouseButton1Up:Connect(function ()
  2702.     keyrelease("0x44")
  2703. end)
  2704.  
  2705. FlyWButton.MouseButton1Down:Connect(function()
  2706.     keypress("0x57")
  2707. end)
  2708. FlyWButton.MouseButton1Up:Connect(function ()
  2709.     keyrelease("0x57")
  2710. end)
  2711.  
  2712. --TARGET
  2713. ClickTargetTool_Button.MouseButton1Click:Connect(function()
  2714.     local GetTargetTool = Instance.new("Tool")
  2715.     GetTargetTool.Name = "ClickTarget"
  2716.     GetTargetTool.RequiresHandle = false
  2717.     GetTargetTool.TextureId = "rbxassetid://2716591855"
  2718.     GetTargetTool.ToolTip = "Select Target"
  2719.  
  2720.     local function ActivateTool()
  2721.         local root = GetRoot(plr)
  2722.         local hit = mouse.Target
  2723.         local person = nil
  2724.         if hit and hit.Parent then
  2725.             if hit.Parent:IsA("Model") then
  2726.                 person = game.Players:GetPlayerFromCharacter(hit.Parent)
  2727.             elseif hit.Parent:IsA("Accessory") then
  2728.                 person = game.Players:GetPlayerFromCharacter(hit.Parent.Parent)
  2729.             end
  2730.             if person then
  2731.                 UpdateTarget(person)
  2732.             end
  2733.         end
  2734.     end
  2735.  
  2736.     GetTargetTool.Activated:Connect(function()
  2737.         ActivateTool()
  2738.     end)
  2739.     GetTargetTool.Parent = plr.Backpack
  2740. end)
  2741.  
  2742. FlingTarget_Button.MouseButton1Click:Connect(function()
  2743.     if TargetedPlayer ~= nil then
  2744.         ChangeToggleColor(FlingTarget_Button)
  2745.         if FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2746.             if TouchFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0) then
  2747.                 ChangeToggleColor(TouchFling_Button)
  2748.             end
  2749.             local OldPos = GetRoot(plr).Position
  2750.             ToggleFling(true)
  2751.             repeat task.wait()
  2752.                 pcall(function()
  2753.                     PredictionTP(Players[TargetedPlayer],"safe")
  2754.                 end)
  2755.                 task.wait()
  2756.             until FlingTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2757.             TeleportTO(OldPos.X,OldPos.Y,OldPos.Z,"pos","safe")
  2758.         else
  2759.             ToggleFling(false)
  2760.         end
  2761.     end
  2762. end)
  2763.  
  2764. ViewTarget_Button.MouseButton1Click:Connect(function()
  2765.     if TargetedPlayer ~= nil then
  2766.         ChangeToggleColor(ViewTarget_Button)
  2767.         if ViewTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2768.             repeat
  2769.                 pcall(function()
  2770.                     game.Workspace.CurrentCamera.CameraSubject = Players[TargetedPlayer].Character.Humanoid
  2771.                 end)
  2772.                 task.wait(0.5)
  2773.             until ViewTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2774.             game.Workspace.CurrentCamera.CameraSubject = plr.Character.Humanoid
  2775.         end
  2776.     end
  2777. end)
  2778.  
  2779. FocusTarget_Button.MouseButton1Click:Connect(function()
  2780.     if TargetedPlayer ~= nil then
  2781.         ChangeToggleColor(FocusTarget_Button)
  2782.         if FocusTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2783.             repeat
  2784.                 pcall(function()
  2785.                     local target = Players[TargetedPlayer]
  2786.                     TeleportTO(0,0,0,target)
  2787.                     Push(Players[TargetedPlayer])
  2788.                 end)
  2789.                 task.wait(0.2)
  2790.             until FocusTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2791.         end
  2792.     end
  2793. end)
  2794.  
  2795. BenxTarget_Button.MouseButton1Click:Connect(function()
  2796.     if TargetedPlayer ~= nil then
  2797.         ChangeToggleColor(BenxTarget_Button)
  2798.         if BenxTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2799.             PlayAnim(5918726674,0,1)
  2800.             repeat
  2801.                 pcall(function()
  2802.                     if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2803.                         pcall(function()
  2804.                             local TempV = Velocity_Asset:Clone()
  2805.                             TempV.Parent = GetRoot(plr)
  2806.                         end)
  2807.                     end
  2808.                     local otherRoot = GetRoot(Players[TargetedPlayer])
  2809.                     GetRoot(plr).CFrame = otherRoot.CFrame * CFrame.new(0,0,1.1)
  2810.                     GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2811.                 end)
  2812.                 task.wait()
  2813.             until BenxTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2814.             StopAnim()
  2815.             if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2816.                 GetRoot(plr).BreakVelocity:Destroy()
  2817.             end
  2818.         end
  2819.     end
  2820. end)
  2821.  
  2822. HeadsitTarget_Button.MouseButton1Click:Connect(function()
  2823.     if TargetedPlayer ~= nil then
  2824.         ChangeToggleColor(HeadsitTarget_Button)
  2825.         if HeadsitTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2826.             repeat
  2827.                 pcall(function()
  2828.                     if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2829.                         pcall(function()
  2830.                             local TempV = Velocity_Asset:Clone()
  2831.                             TempV.Parent = GetRoot(plr)
  2832.                         end)
  2833.                     end
  2834.                     local targethead = Players[TargetedPlayer].Character.Head
  2835.                     plr.Character.Humanoid.Sit = true
  2836.                     GetRoot(plr).CFrame = targethead.CFrame * CFrame.new(0,2,0)
  2837.                     GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2838.                 end)
  2839.                 task.wait()
  2840.             until HeadsitTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2841.             if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2842.                 GetRoot(plr).BreakVelocity:Destroy()
  2843.             end
  2844.         end
  2845.     end
  2846. end)
  2847.  
  2848. StandTarget_Button.MouseButton1Click:Connect(function()
  2849.     if TargetedPlayer ~= nil then
  2850.         ChangeToggleColor(StandTarget_Button)
  2851.         if StandTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2852.             PlayAnim(13823324057,4,0)
  2853.             repeat
  2854.                 pcall(function()
  2855.                     if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2856.                         pcall(function()
  2857.                             local TempV = Velocity_Asset:Clone()
  2858.                             TempV.Parent = GetRoot(plr)
  2859.                         end)
  2860.                     end
  2861.                     local root = GetRoot(Players[TargetedPlayer])
  2862.                     GetRoot(plr).CFrame = root.CFrame * CFrame.new(-3,1,0)
  2863.                     GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2864.                 end)
  2865.                 task.wait()
  2866.             until StandTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2867.             StopAnim()
  2868.             if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2869.                 GetRoot(plr).BreakVelocity:Destroy()
  2870.             end
  2871.         end
  2872.     end
  2873. end)
  2874.  
  2875. BackpackTarget_Button.MouseButton1Click:Connect(function()
  2876.     if TargetedPlayer ~= nil then
  2877.         ChangeToggleColor(BackpackTarget_Button)
  2878.         if BackpackTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2879.             repeat
  2880.                 pcall(function()
  2881.                     if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2882.                         pcall(function()
  2883.                             local TempV = Velocity_Asset:Clone()
  2884.                             TempV.Parent = GetRoot(plr)
  2885.                         end)
  2886.                     end
  2887.                     local root = GetRoot(Players[TargetedPlayer])
  2888.                     plr.Character.Humanoid.Sit = true
  2889.                     GetRoot(plr).CFrame = root.CFrame * CFrame.new(0,0,1.2) * CFrame.Angles(0, -3, 0)
  2890.                     GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2891.                 end)
  2892.                 task.wait()
  2893.             until BackpackTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2894.             if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2895.                 GetRoot(plr).BreakVelocity:Destroy()
  2896.             end
  2897.         end
  2898.     end
  2899. end)
  2900.  
  2901. DoggyTarget_Button.MouseButton1Click:Connect(function()
  2902.     if TargetedPlayer ~= nil then
  2903.         ChangeToggleColor(DoggyTarget_Button)
  2904.         if DoggyTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2905.             PlayAnim(13694096724,3.4,0)
  2906.             repeat
  2907.                 pcall(function()
  2908.                     if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2909.                         pcall(function()
  2910.                             local TempV = Velocity_Asset:Clone()
  2911.                             TempV.Parent = GetRoot(plr)
  2912.                         end)
  2913.                     end
  2914.                     local root = Players[TargetedPlayer].Character.LowerTorso
  2915.                     GetRoot(plr).CFrame = root.CFrame * CFrame.new(0,0.23,0)
  2916.                     GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2917.                 end)
  2918.                 task.wait()
  2919.             until DoggyTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2920.             StopAnim()
  2921.             if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2922.                 GetRoot(plr).BreakVelocity:Destroy()
  2923.             end
  2924.         end
  2925.     end
  2926. end)
  2927.  
  2928. DragTarget_Button.MouseButton1Click:Connect(function()
  2929.     if TargetedPlayer ~= nil then
  2930.         ChangeToggleColor(DragTarget_Button)
  2931.         if DragTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  2932.             PlayAnim(10714360343,0.5,0)
  2933.             repeat
  2934.                 pcall(function()
  2935.                     if not GetRoot(plr):FindFirstChild("BreakVelocity") then
  2936.                         pcall(function()
  2937.                             local TempV = Velocity_Asset:Clone()
  2938.                             TempV.Parent = GetRoot(plr)
  2939.                         end)
  2940.                     end
  2941.                     local root = Players[TargetedPlayer].Character.RightHand
  2942.                     GetRoot(plr).CFrame = root.CFrame * CFrame.new(0,-2.5,1) * CFrame.Angles(-2, -3, 0)
  2943.                     GetRoot(plr).Velocity = Vector3.new(0,0,0)
  2944.                 end)
  2945.                 task.wait()
  2946.             until DragTarget_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  2947.             StopAnim()
  2948.             if GetRoot(plr):FindFirstChild("BreakVelocity") then
  2949.                 GetRoot(plr).BreakVelocity:Destroy()
  2950.             end
  2951.         end
  2952.     end
  2953. end)
  2954.  
  2955. PushTarget_Button.MouseButton1Click:Connect(function()
  2956.     if TargetedPlayer ~= nil then
  2957.         local pushpos = GetRoot(plr).CFrame
  2958.         PredictionTP(Players[TargetedPlayer])
  2959.         task.wait(GetPing()+0.05)
  2960.         Push(Players[TargetedPlayer])
  2961.         GetRoot(plr).CFrame = pushpos
  2962.     end
  2963. end)
  2964.  
  2965. TeleportTarget_Button.MouseButton1Click:Connect(function()
  2966.     if TargetedPlayer ~= nil then
  2967.         TeleportTO(0,0,0,Players[TargetedPlayer],"safe")
  2968.     end
  2969. end)
  2970.  
  2971. WhitelistTarget_Button.MouseButton1Click:Connect(function()
  2972.     if TargetedPlayer ~= nil then
  2973.         if table.find(ScriptWhitelist, Players[TargetedPlayer].UserId) then
  2974.             for i,v in pairs(ScriptWhitelist) do
  2975.                 if v == Players[TargetedPlayer].UserId then
  2976.                     table.remove(ScriptWhitelist, i)
  2977.                 end
  2978.             end
  2979.             SendNotify("System Broken",TargetedPlayer.." removed from whitelist.",5)
  2980.         else
  2981.             table.insert(ScriptWhitelist, Players[TargetedPlayer].UserId)
  2982.             SendNotify("System Broken",TargetedPlayer.." added to whitelist.", 5)
  2983.         end
  2984.     end
  2985. end)
  2986.  
  2987. TargetName_Input.FocusLost:Connect(function()
  2988.     local LabelText = TargetName_Input.Text
  2989.     local LabelTarget = GetPlayer(LabelText)
  2990.     UpdateTarget(LabelTarget)
  2991. end)
  2992.  
  2993. --ANIMATIONS
  2994.  
  2995. VampireAnim_Button.MouseButton1Click:Connect(function()
  2996.     local Animate = plr.Character.Animate
  2997.     Animate.Disabled = true
  2998.     StopAnim()
  2999.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083445855"
  3000.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083450166"
  3001.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083473930"
  3002.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083462077"
  3003.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083455352"
  3004.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083439238"
  3005.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083443587"
  3006.     plr.Character.Humanoid:ChangeState(3)
  3007.     Animate.Disabled = false
  3008. end)
  3009.  
  3010. HeroAnim_Button.MouseButton1Click:Connect(function()
  3011.     local Animate = plr.Character.Animate
  3012.     Animate.Disabled = true
  3013.     StopAnim()
  3014.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616111295"
  3015.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616113536"
  3016.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616122287"
  3017.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616117076"
  3018.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616115533"
  3019.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616104706"
  3020.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616108001"
  3021.     plr.Character.Humanoid:ChangeState(3)
  3022.     Animate.Disabled = false
  3023. end)
  3024.  
  3025. ZombieClassicAnim_Button.MouseButton1Click:Connect(function()
  3026.     local Animate = plr.Character.Animate
  3027.     Animate.Disabled = true
  3028.     StopAnim()
  3029.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616158929"
  3030.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616160636"
  3031.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616168032"
  3032.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616163682"
  3033.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  3034.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  3035.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  3036.     plr.Character.Humanoid:ChangeState(3)
  3037.     Animate.Disabled = false
  3038. end)
  3039.  
  3040. MageAnim_Button.MouseButton1Click:Connect(function()
  3041.     local Animate = plr.Character.Animate
  3042.     Animate.Disabled = true
  3043.     StopAnim()
  3044.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=707742142"
  3045.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=707855907"
  3046.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=707897309"
  3047.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=707861613"
  3048.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=707853694"
  3049.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=707826056"
  3050.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=707829716"
  3051.     plr.Character.Humanoid:ChangeState(3)
  3052.     Animate.Disabled = false
  3053. end)
  3054.  
  3055. GhostAnim_Button.MouseButton1Click:Connect(function()
  3056.     local Animate = plr.Character.Animate
  3057.     Animate.Disabled = true
  3058.     StopAnim()
  3059.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
  3060.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
  3061.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
  3062.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  3063.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
  3064.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
  3065.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
  3066.     plr.Character.Humanoid:ChangeState(3)
  3067.     Animate.Disabled = false
  3068. end)
  3069.  
  3070. ElderAnim_Button.MouseButton1Click:Connect(function()
  3071.     local Animate = plr.Character.Animate
  3072.     Animate.Disabled = true
  3073.     StopAnim()
  3074.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=845397899"
  3075.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=845400520"
  3076.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=845403856"
  3077.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=845386501"
  3078.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=845398858"
  3079.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=845392038"
  3080.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=845396048"
  3081.     plr.Character.Humanoid:ChangeState(3)
  3082.     Animate.Disabled = false
  3083. end)
  3084.  
  3085. LevitationAnim_Button.MouseButton1Click:Connect(function()
  3086.     local Animate = plr.Character.Animate
  3087.     Animate.Disabled = true
  3088.     StopAnim()
  3089.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=616006778"
  3090.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=616008087"
  3091.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=616013216"
  3092.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=616010382"
  3093.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616008936"
  3094.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616003713"
  3095.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616005863"
  3096.     plr.Character.Humanoid:ChangeState(3)
  3097.     Animate.Disabled = false
  3098. end)
  3099.  
  3100. AstronautAnim_Button.MouseButton1Click:Connect(function()
  3101.     local Animate = plr.Character.Animate
  3102.     Animate.Disabled = true
  3103.     StopAnim()
  3104.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=891621366"
  3105.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=891633237"
  3106.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=891667138"
  3107.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=891636393"
  3108.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=891627522"
  3109.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=891609353"
  3110.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=891617961"
  3111.     plr.Character.Humanoid:ChangeState(3)
  3112.     Animate.Disabled = false
  3113. end)
  3114.  
  3115. NinjaAnim_Button.MouseButton1Click:Connect(function()
  3116.     local Animate = plr.Character.Animate
  3117.     Animate.Disabled = true
  3118.     StopAnim()
  3119.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=656117400"
  3120.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=656118341"
  3121.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=656121766"
  3122.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=656118852"
  3123.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=656117878"
  3124.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=656114359"
  3125.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=656115606"
  3126.     plr.Character.Humanoid:ChangeState(3)
  3127.     Animate.Disabled = false
  3128. end)
  3129.  
  3130. WerewolfAnim_Button.MouseButton1Click:Connect(function()
  3131.     local Animate = plr.Character.Animate
  3132.     Animate.Disabled = true
  3133.     StopAnim()
  3134.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1083195517"
  3135.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1083214717"
  3136.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1083178339"
  3137.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1083216690"
  3138.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1083218792"
  3139.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1083182000"
  3140.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1083189019"
  3141.     plr.Character.Humanoid:ChangeState(3)
  3142.     Animate.Disabled = false
  3143. end)
  3144.  
  3145. CartoonAnim_Button.MouseButton1Click:Connect(function()
  3146.     local Animate = plr.Character.Animate
  3147.     Animate.Disabled = true
  3148.     StopAnim()
  3149.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=742637544"
  3150.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=742638445"
  3151.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=742640026"
  3152.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=742638842"
  3153.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=742637942"
  3154.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=742636889"
  3155.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=742637151"
  3156.     plr.Character.Humanoid:ChangeState(3)
  3157.     Animate.Disabled = false
  3158. end)
  3159.  
  3160. PirateAnim_Button.MouseButton1Click:Connect(function()
  3161.     local Animate = plr.Character.Animate
  3162.     Animate.Disabled = true
  3163.     StopAnim()
  3164.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=750781874"
  3165.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=750782770"
  3166.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=750785693"
  3167.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=750783738"
  3168.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=750782230"
  3169.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=750779899"
  3170.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=750780242"
  3171.     plr.Character.Humanoid:ChangeState(3)
  3172.     Animate.Disabled = false
  3173. end)
  3174.  
  3175. SneakyAnim_Button.MouseButton1Click:Connect(function()
  3176.     local Animate = plr.Character.Animate
  3177.     Animate.Disabled = true
  3178.     StopAnim()
  3179.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1132473842"
  3180.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1132477671"
  3181.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1132510133"
  3182.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1132494274"
  3183.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1132489853"
  3184.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1132461372"
  3185.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1132469004"
  3186.     plr.Character.Humanoid:ChangeState(3)
  3187.     Animate.Disabled = false
  3188. end)
  3189.  
  3190. ToyAnim_Button.MouseButton1Click:Connect(function()
  3191.     local Animate = plr.Character.Animate
  3192.     Animate.Disabled = true
  3193.     StopAnim()
  3194.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=782841498"
  3195.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=782845736"
  3196.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=782843345"
  3197.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=782842708"
  3198.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=782847020"
  3199.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=782843869"
  3200.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=782846423"
  3201.     plr.Character.Humanoid:ChangeState(3)
  3202.     Animate.Disabled = false
  3203. end)
  3204.  
  3205. KnightAnim_Button.MouseButton1Click:Connect(function()
  3206.     local Animate = plr.Character.Animate
  3207.     Animate.Disabled = true
  3208.     StopAnim()
  3209.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=657595757"
  3210.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=657568135"
  3211.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=657552124"
  3212.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=657564596"
  3213.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=658409194"
  3214.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=658360781"
  3215.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=657600338"
  3216.     plr.Character.Humanoid:ChangeState(3)
  3217.     Animate.Disabled = false
  3218. end)
  3219.  
  3220. --NEWS
  3221. ConfidentAnim_Button.MouseButton1Click:Connect(function()
  3222.     local Animate = plr.Character.Animate
  3223.     Animate.Disabled = true
  3224.     StopAnim()
  3225.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1069977950"
  3226.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1069987858"
  3227.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1070017263"
  3228.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1070001516"
  3229.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1069984524"
  3230.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1069946257"
  3231.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1069973677"
  3232.     plr.Character.Humanoid:ChangeState(3)
  3233.     Animate.Disabled = false
  3234. end)
  3235.  
  3236. PopstarAnim_Button.MouseButton1Click:Connect(function()
  3237.     local Animate = plr.Character.Animate
  3238.     Animate.Disabled = true
  3239.     StopAnim()
  3240.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1212900985"
  3241.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1212900985"
  3242.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1212980338"
  3243.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1212980348"
  3244.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1212954642"
  3245.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1213044953"
  3246.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1212900995"
  3247.     plr.Character.Humanoid:ChangeState(3)
  3248.     Animate.Disabled = false
  3249. end)
  3250.  
  3251. PrincessAnim_Button.MouseButton1Click:Connect(function()
  3252.     local Animate = plr.Character.Animate
  3253.     Animate.Disabled = true
  3254.     StopAnim()
  3255.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=941003647"
  3256.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=941013098"
  3257.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=941028902"
  3258.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=941015281"
  3259.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=941008832"
  3260.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=940996062"
  3261.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=941000007"
  3262.     plr.Character.Humanoid:ChangeState(3)
  3263.     Animate.Disabled = false
  3264. end)
  3265.  
  3266. CowboyAnim_Button.MouseButton1Click:Connect(function()
  3267.     local Animate = plr.Character.Animate
  3268.     Animate.Disabled = true
  3269.     StopAnim()
  3270.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1014390418"
  3271.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1014398616"
  3272.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1014421541"
  3273.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1014401683"
  3274.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1014394726"
  3275.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1014380606"
  3276.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1014384571"
  3277.     plr.Character.Humanoid:ChangeState(3)
  3278.     Animate.Disabled = false
  3279. end)
  3280.  
  3281. PatrolAnim_Button.MouseButton1Click:Connect(function()
  3282.     local Animate = plr.Character.Animate
  3283.     Animate.Disabled = true
  3284.     StopAnim()
  3285.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=1149612882"
  3286.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=1150842221"
  3287.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=1151231493"
  3288.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=1150967949"
  3289.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=1150944216"
  3290.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=1148811837"
  3291.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=1148863382"
  3292.     plr.Character.Humanoid:ChangeState(3)
  3293.     Animate.Disabled = false
  3294. end)
  3295.  
  3296. ZombieFEAnim_Button.MouseButton1Click:Connect(function()
  3297.     local Animate = plr.Character.Animate
  3298.     Animate.Disabled = true
  3299.     StopAnim()
  3300.     Animate.idle.Animation1.AnimationId = "http://www.roblox.com/asset/?id=3489171152"
  3301.     Animate.idle.Animation2.AnimationId = "http://www.roblox.com/asset/?id=3489171152"
  3302.     Animate.walk.WalkAnim.AnimationId = "http://www.roblox.com/asset/?id=3489174223"
  3303.     Animate.run.RunAnim.AnimationId = "http://www.roblox.com/asset/?id=3489173414"
  3304.     Animate.jump.JumpAnim.AnimationId = "http://www.roblox.com/asset/?id=616161997"
  3305.     Animate.climb.ClimbAnim.AnimationId = "http://www.roblox.com/asset/?id=616156119"
  3306.     Animate.fall.FallAnim.AnimationId = "http://www.roblox.com/asset/?id=616157476"
  3307.     plr.Character.Humanoid:ChangeState(3)
  3308.     Animate.Disabled = false
  3309. end)
  3310.  
  3311. --MISC
  3312.  
  3313. pcall(function()
  3314.     aBjaUfk.Position = plr.Character.HumanoidRootPart.Position
  3315. end)
  3316.  
  3317. AntiFling_Button.MouseButton1Click:Connect(function()
  3318.     ChangeToggleColor(AntiFling_Button)
  3319.     if AntiFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3320.         _G.AntiFlingToggled = true
  3321.         loadstring(game:HttpGet('https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/AntiFling'))()
  3322.     else
  3323.         _G.AntiFlingToggled = false
  3324.     end
  3325. end)
  3326.  
  3327. AntiChatSpy_Button.MouseButton1Click:Connect(function()
  3328.     ChangeToggleColor(AntiChatSpy_Button)
  3329.     if AntiChatSpy_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3330.         repeat task.wait()
  3331.             Players:Chat(RandomChar())
  3332.         until AntiChatSpy_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0)
  3333.     end
  3334. end)
  3335.  
  3336. local AntiAFKFunction = nil
  3337. AntiAFK_Button.MouseButton1Click:Connect(function()
  3338.     ChangeToggleColor(AntiAFK_Button)
  3339.     if AntiAFK_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3340.         AntiAFKFunction = plr.Idled:Connect(function()
  3341.             local VirtualUser = game:GetService("VirtualUser")
  3342.             VirtualUser:CaptureController()
  3343.             VirtualUser:ClickButton2(Vector2.new())
  3344.         end)
  3345.     else
  3346.         AntiAFKFunction:Disconnect()
  3347.     end
  3348. end)
  3349.  
  3350. Shaders_Button.MouseButton1Click:Connect(function()
  3351.     ChangeToggleColor(Shaders_Button)
  3352.     if Shaders_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3353.         local Sky = Instance.new("Sky")
  3354.         local Bloom = Instance.new("BloomEffect")
  3355.         local Blur = Instance.new("BlurEffect")
  3356.         local ColorC = Instance.new("ColorCorrectionEffect")
  3357.         local SunRays = Instance.new("SunRaysEffect")
  3358.  
  3359.         Light.Brightness = 2.25
  3360.         Light.ExposureCompensation = 0.1
  3361.         Light.ClockTime = 17.55
  3362.  
  3363.         Sky.SkyboxBk = "http://www.roblox.com/asset/?id=144933338"
  3364.         Sky.SkyboxDn = "http://www.roblox.com/asset/?id=144931530"
  3365.         Sky.SkyboxFt = "http://www.roblox.com/asset/?id=144933262"
  3366.         Sky.SkyboxLf = "http://www.roblox.com/asset/?id=144933244"
  3367.         Sky.SkyboxRt = "http://www.roblox.com/asset/?id=144933299"
  3368.         Sky.SkyboxUp = "http://www.roblox.com/asset/?id=144931564"
  3369.         Sky.StarCount = 5000
  3370.         Sky.SunAngularSize = 5
  3371.         Sky.Parent = Light
  3372.  
  3373.         Bloom.Intensity = 0.3
  3374.         Bloom.Size = 10
  3375.         Bloom.Threshold = 0.8
  3376.         Bloom.Parent = Light
  3377.  
  3378.         Blur.Size = 5
  3379.         Blur.Parent = Light
  3380.  
  3381.         ColorC.Brightness = 0
  3382.         ColorC.Contrast = 0.1
  3383.         ColorC.Saturation = 0.25
  3384.         ColorC.TintColor = Color3.fromRGB(255, 255, 255)
  3385.         ColorC.Parent = Light
  3386.  
  3387.         SunRays.Intensity = 0.1
  3388.         SunRays.Spread = 0.8
  3389.         SunRays.Parent = Light
  3390.     else
  3391.         for i,v in pairs(Light:GetChildren()) do
  3392.             v:Destroy()
  3393.         end
  3394.         Light.Brightness = 2
  3395.         Light.ExposureCompensation = 0
  3396.     end
  3397. end)
  3398.  
  3399. Day_Button.MouseButton1Click:Connect(function()
  3400.     if Shaders_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0) then
  3401.         game:GetService("Lighting").ClockTime = 14
  3402.     else
  3403.         SendNotify("System Broken","Please turn off shaders.",5)
  3404.     end
  3405. end)
  3406.  
  3407. Night_Button.MouseButton1Click:Connect(function()
  3408.     if Shaders_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(255,0,0) then
  3409.         game:GetService("Lighting").ClockTime = 19
  3410.     else
  3411.         SendNotify("System Broken","Please turn off shaders.",5)
  3412.     end
  3413. end)
  3414.  
  3415. InfYield_Button.MouseButton1Click:Connect(function()
  3416.     loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  3417. end)
  3418.  
  3419. CMDX_Button.MouseButton1Click:Connect(function()
  3420.     loadstring(game:HttpGet("https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source",true))()
  3421. end)
  3422.  
  3423. Explode_Button.MouseButton1Click:Connect(function()
  3424.     ToggleRagdoll(false)
  3425.     task.wait()
  3426.     plr.Character.Humanoid:ChangeState(0)
  3427.     local bav = Instance.new("BodyAngularVelocity")
  3428.     bav.Parent = GetRoot(plr)
  3429.     bav.Name = "Spin"
  3430.     bav.MaxTorque = Vector3.new(0,math.huge,0)
  3431.     bav.AngularVelocity = Vector3.new(0,150,0)
  3432.     task.wait(3)
  3433.     plr.Character.Humanoid:ChangeState(15)
  3434. end)
  3435.  
  3436. FreeEmotes_Button.MouseButton1Click:Connect(function()
  3437.     if not FreeEmotesEnabled then
  3438.         FreeEmotesEnabled = true
  3439.         SendNotify("System Broken","Loading free emotes.\nCredits: Gi#7331")
  3440.         loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/AllEmotes"))()
  3441.     end
  3442. end)
  3443.  
  3444. Rejoin_Button.MouseButton1Click:Connect(function()
  3445.     game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3446. end)
  3447.  
  3448. Serverhop_Button.MouseButton1Click:Connect(function()
  3449.     if httprequest then
  3450.         local servers = {}
  3451.         local req = httprequest({Url = string.format("https://games.roblox.com/v1/games/%d/servers/Public?sortOrder=Desc&limit=100", game.PlaceId)})
  3452.         local body = HttpService:JSONDecode(req.Body)
  3453.         if body and body.data then
  3454.             for i, v in next, body.data do
  3455.                 if type(v) == "table" and tonumber(v.playing) and tonumber(v.maxPlayers) and v.playing < v.maxPlayers and v.id ~= game.JobId then
  3456.                     table.insert(servers, 1, v.id)
  3457.                 end
  3458.             end
  3459.         end
  3460.         if #servers > 0 then
  3461.             game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, servers[math.random(1, #servers)], plr)
  3462.         end
  3463.     end
  3464. end)
  3465.  
  3466. ChatBox_Input.FocusLost:Connect(function()
  3467.     local args = {[1] = ChatBox_Input.Text,[2] = "All"}
  3468.     game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(unpack(args))
  3469.     ChatBox_Input.Text = ""
  3470. end)
  3471.  
  3472. --GUI Functions
  3473. Players.PlayerRemoving:Connect(function(player)
  3474.     pcall(function()
  3475.         if player.Name == TargetedPlayer then
  3476.             UpdateTarget(nil)
  3477.             SendNotify("System Broken","Targeted player left/rejoined.",5)
  3478.         end
  3479.     end)
  3480. end)
  3481.  
  3482. plr.CharacterAdded:Connect(function(x)
  3483.     task.wait(GetPing()+0.1)
  3484.     x:WaitForChild("Humanoid")
  3485.     if SavedCheckpoint ~= nil then
  3486.         TeleportTO(SavedCheckpoint.X,SavedCheckpoint.Y,SavedCheckpoint.Z,"pos","safe")
  3487.     end
  3488.     if PotionDi_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3489.         ChangeToggleColor(PotionDi_Button)
  3490.         SendNotify("System Broken","PotionDiсҚ was automatically disabled due to your character respawn",5)
  3491.     end
  3492.     if PotionFling_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3493.         ChangeToggleColor(PotionFling_Button)
  3494.         SendNotify("System Broken","PotionFling was automatically disabled due to your character respawn",5)
  3495.     end
  3496.     if AntiRagdoll_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3497.         ChangeToggleColor(AntiRagdoll_Button)
  3498.         SendNotify("System Broken","AntiRagdoll was automatically disabled due to your character respawn",5)
  3499.     end
  3500.     if SpamMines_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3501.         ChangeToggleColor(SpamMines_Button)
  3502.         SendNotify("System Broken","SpamMines was automatically disabled due to your character respawn",5)
  3503.     end
  3504.     if Fly_Button.Ticket_Asset.ImageColor3 == Color3.fromRGB(0,255,0) then
  3505.         ChangeToggleColor(Fly_Button)
  3506.         flying = false
  3507.         Fly_Pad.Visible = false
  3508.         KeyDownFunction:Disconnect()
  3509.         KeyUpFunction:Disconnect()
  3510.         SendNotify("System Broken","Fly was automatically disabled due to your character respawn",5)
  3511.     end
  3512.     x.Humanoid.Died:Connect(function()
  3513.         pcall(function()
  3514.             x["Pushed"].Disabled = false
  3515.             x["RagdollMe"].Disabled = false
  3516.         end)
  3517.     end)
  3518. end)
  3519.  
  3520. task.spawn(function()
  3521.     while task.wait(10) do
  3522.         pcall(function()
  3523.             local GuiVersion = loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/version"))()
  3524.             if version<GuiVersion then
  3525.                 SendNotify("System Broken","You are not using the latest version, please run the script again.",5)
  3526.                 task.wait(5)
  3527.                 SysBroker:Destroy()
  3528.                 game:GetService("TeleportService"):TeleportToPlaceInstance(game.PlaceId, game.JobId, plr)
  3529.             end
  3530.         end)
  3531.     end
  3532. end)
  3533.  
  3534. OpenClose.MouseButton1Click:Connect(function()
  3535.     Background.Visible = not Background.Visible
  3536. end)
  3537.  
  3538. game:GetService("UserInputService").InputBegan:Connect(function(input,gameProcessedEvent)
  3539.     if gameProcessedEvent then return end
  3540.     if input.KeyCode == Enum.KeyCode.B then
  3541.         Background.Visible = not Background.Visible
  3542.     end
  3543. end)
  3544.  
  3545. SendNotify("System Broken","Gui developed by MalwareHub - Discord in your clipboard",10)
  3546. --setclipboard("https://discord.gg/RkhpySwNR9")
  3547. loadstring(game:HttpGet("https://raw.githubusercontent.com/H20CalibreYT/SystemBroken/main/premium"))() -- load the premium
Add Comment
Please, Sign In to add comment