game:GetService("ReplicatedStorage").VARDisplay:Remove() game:GetService("ReplicatedStorage"):WaitForChild("BalITouchRemote"):Remove() local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({Name = "Main Hacks", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"}) local Tab = Window:MakeTab({ Name = "Mobile Tab", Icon = "rbxassetid://4483345998", PremiumOnly = false }) OrionLib:MakeNotification({ Name = "WARN", Content = "DELETE ANTI CHEAT WHIT TOGGLE BUTTON", Image = "rbxassetid://4483345998", Time = 5 }) --[[ Title = - The title of the notification. Content = - The content of the notification. Image = - The icon of the notification. Time = - The duration of the notfication. ]] --[[ Name = - The name of the tab. Icon = - The icon of the tab. PremiumOnly = - Makes the tab accessible to Sirus Premium users only. ]] --[[ Name = - The name of the UI. HidePremium = - Whether or not the user details shows Premium status or not. SaveConfig = - Toggles the config saving in the UI. ConfigFolder = - The name of the folder where the configs are saved. IntroEnabled = - Whether or not to show the intro animation. IntroText = - Text to show in the intro animation. IntroIcon = - URL to the image you want to use in the intro animation. Icon = - URL to the image you want displayed on the window. CloseCallback = - Function to execute when the window is closed. ]] Tab:AddButton({ Name = "Mobile Arm Hbe", Callback = function() game.Players.LocalPlayer.Character["Right Arm"].Size = Vector3.new(8, 8, 1) game.Players.LocalPlayer.Character["Left Arm"].Size = Vector3.new(8, 8, 1) game.Players.LocalPlayer.Character["Right Arm"].CanCollide = false game.Players.LocalPlayer.Character["Left Arm"].CanCollide = false game.Players.LocalPlayer.Character["Right Arm"].Massless = true game.Players.LocalPlayer.Character["Left Arm"].Massless = true game.Players.LocalPlayer.Character["Right Arm"].Transparency = 0.9 game.Players.LocalPlayer.Character["Left Arm"].Transparency = 0.9 end }) --[[ Name = - The name of the button. Callback = - The function of the button. ]] Tab:AddButton({ Name = "Mobile Leg Hbe Legit", Callback = function() game.Players.LocalPlayer.Character["Right Leg"].Size = Vector3.new(8, 2, 8) game.Players.LocalPlayer.Character["Left Leg"].Size = Vector3.new(8, 2, 8) game.Players.LocalPlayer.Character["Right Leg"].CanCollide = false game.Players.LocalPlayer.Character["Left Leg"].CanCollide = false game.Players.LocalPlayer.Character["Right Leg"].Massless = true game.Players.LocalPlayer.Character["Left Leg"].Massless = true game.Players.LocalPlayer.Character["Right Leg"].Transparency = 0.9 game.Players.LocalPlayer.Character["Left Leg"].Transparency = 0.9 end }) --[[ Name = - The name of the button. Callback = - The function of the button. ]] Tab:AddButton({ Name = "Mobile Ball Hbe Size 2.054 Long 10", Callback = function() game.Workspace.Ball.Size = Vector3.new(10, 2.054, 2.054) end }) --[[ Name = - The name of the button. Callback = - The function of the button. ]] Tab:AddButton({ Name = "Mobile Ball Hbe Size 2 Long 15", Callback = function() game.Workspace.Ball.Size = Vector3.new(15, 2, 2) end }) --[[ Name = - The name of the button. Callback = - The function of the button. ]] Tab:AddToggle({ Name = "Delete Anti Cheats", Default = false, Callback = function(Value) game:GetService("ReplicatedStorage").VARDisplay:Remove() game:GetService("ReplicatedStorage"):WaitForChild("BalITouchRemote"):Remove() end }) --[[ Name = - The name of the toggle. Default = - The default value of the toggle. Callback = - The function of the toggle. ]]