local CoreGui = game:GetService("StarterGui") local Players = game:GetService("Players") local function isNumber(str) if tonumber(str) ~= nil or str == 'inf' then return true end end getgenv().HitboxSize = 15 getgenv().HitboxTransparency = 0.9 getgenv().HitboxStatus = false getgenv().TeamCheck = false getgenv().Walkspeed = game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed getgenv().Jumppower = game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower getgenv().TPSpeed = 3 getgenv().TPWalk = false --// UI local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/UI-Library/main/Source/MyUILib(Unamed).lua"))(); local Window = Library:Create("Made by bruhmoments#5852") local altKeyDown = false game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.LeftAlt then altKeyDown = true end end) game:GetService("UserInputService").InputEnded:Connect(function(input) if input.KeyCode == Enum.KeyCode.LeftAlt then altKeyDown = false end end) game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.LeftAlt and altKeyDown then Library:ToggleUI() end end) local HomeTab = Window:Tab("Home","rbxassetid://10888331510") local PlayerTab = Window:Tab("Players","rbxassetid://12296135476") local VisualTab = Window:Tab("Visuals","rbxassetid://12308581351") local OtherGamesTab = Window:Tab("Other Games", "rbxassetid://...") HomeTab:InfoLabel("only works on some games!") HomeTab:Section("Settings") HomeTab:TextBox("Hitbox Size", function(value) getgenv().HitboxSize = value end) HomeTab:TextBox("Hitbox Transparency", function(number) getgenv().HitboxTransparency = number end) HomeTab:Section("Main") HomeTab:Toggle("Status: ", function(state) getgenv().HitboxStatus = state game:GetService('RunService').RenderStepped:Connect(function() if HitboxStatus == true and TeamCheck == false then for i,v in next, game:GetService('Players'):GetPlayers() do if v.Name ~= game:GetService('Players').LocalPlayer.Name then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize) v.Character.HumanoidRootPart.Transparency = HitboxTransparency v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black") v.Character.HumanoidRootPart.Material = "Neon" v.Character.HumanoidRootPart.CanCollide = false end) end end elseif HitboxStatus == true and TeamCheck == true then for i,v in next, game:GetService('Players'):GetPlayers() do if game:GetService('Players').LocalPlayer.Team ~= v.Team then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(HitboxSize, HitboxSize, HitboxSize) v.Character.HumanoidRootPart.Transparency = HitboxTransparency v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Really black") v.Character.HumanoidRootPart.Material = "Neon" v.Character.HumanoidRootPart.CanCollide = false end) end end else for i,v in next, game:GetService('Players'):GetPlayers() do if v.Name ~= game:GetService('Players').LocalPlayer.Name then pcall(function() v.Character.HumanoidRootPart.Size = Vector3.new(2,2,1) v.Character.HumanoidRootPart.Transparency = 1 v.Character.HumanoidRootPart.BrickColor = BrickColor.new("Medium stone grey") v.Character.HumanoidRootPart.Material = "Plastic" v.Character.HumanoidRootPart.CanCollide = false end) end end end end) end) HomeTab:Toggle("Team Check", function(state) getgenv().TeamCheck = state end) HomeTab:Keybind("Toggle UI", Enum.KeyCode.LeftAlt, function() Library:ToggleUI() end) PlayerTab:TextBox("WalkSpeed", function(value) getgenv().Walkspeed = value pcall(function() game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = value end) end) PlayerTab:Toggle("Loop WalkSpeed", function(state) getgenv().loopW = state game:GetService("RunService").Heartbeat:Connect(function() if loopW == true then pcall(function() game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = Walkspeed end) end end) end) PlayerTab:TextBox("JumpPower", function(value) getgenv().Jumppower = value pcall(function() game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = value end) end) PlayerTab:Toggle("Loop JumpPower", function(state) getgenv().loopJ = state game:GetService("RunService").Heartbeat:Connect(function() if loopJ == true then pcall(function() game:GetService("Players").LocalPlayer.Character.Humanoid.JumpPower = Jumppower end) end end) end) PlayerTab:TextBox("TP Speed", function(value) getgenv().TPSpeed = value end) PlayerTab:Toggle("TP Walk", function(s) getgenv().TPWalk = s local hb = game:GetService("RunService").Heartbeat local player = game:GetService("Players") local lplr = player.LocalPlayer local chr = lplr.Character local hum = chr and chr:FindFirstChildWhichIsA("Humanoid") while getgenv().TPWalk and hb:Wait() and chr and hum and hum.Parent do if hum.MoveDirection.Magnitude > 0 then if getgenv().TPSpeed and isNumber(getgenv().TPSpeed) then chr:TranslateBy(hum.MoveDirection * tonumber(getgenv().TPSpeed)) else chr:TranslateBy(hum.MoveDirection) end end end end) PlayerTab:Slider("Fov", game.Workspace.CurrentCamera.FieldOfView, 120, function(v) game.Workspace.CurrentCamera.FieldOfView = v end) PlayerTab:Toggle("Noclip", function(s) getgenv().Noclip = s game:GetService("RunService").Heartbeat:Connect(function() if Noclip == true then game:GetService("RunService").Stepped:Wait() game.Players.LocalPlayer.Character.Head.CanCollide = false game.Players.LocalPlayer.Character.Torso.CanCollide = false end end) end) PlayerTab:Toggle("Infinite Jump", function(s) getgenv().InfJ = s game:GetService("UserInputService").JumpRequest:Connect(function() if InfJ == true then game:GetService("Players").LocalPlayer.Character:FindFirstChildOfClass('Humanoid'):ChangeState("Jumping") end end) end) PlayerTab:Button("Rejoin", function() game:GetService("TeleportService"):Teleport(game.PlaceId, game:GetService("Players").LocalPlayer) end) VisualTab:InfoLabel("Wait 3-10 seconds") VisualTab:Toggle("Character Highlight", function(state) getgenv().enabled = state --Toggle on/off getgenv().filluseteamcolor = true --Toggle fill color using player team color on/off getgenv().outlineuseteamcolor = true --Toggle outline color using player team color on/off getgenv().fillcolor = Color3.new(0, 0, 0) --Change fill color, no need to edit if using team color getgenv().outlinecolor = Color3.new(1, 1, 1) --Change outline color, no need to edit if using team color getgenv().filltrans = 0.5 --Change fill transparency getgenv().outlinetrans = 0.5 --Change outline transparency loadstring(game:HttpGet("https://raw.githubusercontent.com/Vcsk/RobloxScripts/main/Highlight-ESP.lua"))() end) VisualTab:Button("Fps and Ping Boost", function(state) loadstring(game:HttpGet"https://pastebin.com/raw/yuQQQ27h")() end) VisualTab:Button("Health Bar", function(state) loadstring(game:HttpGet"https://pastebin.com/raw/7YQG1p4K")() end) -- Adding the FPS Booster Button local FPSBoostButton = HomeTab:Button("Boost FPS", function() loadstring(game:HttpGet("https://pastebin.com/raw/Ae3RtCyE"))() end) if game.PlaceId == 3082002798 then local GamesTab = Window:Tab("Games","rbxassetid://15426471035") GamesTab:InfoLabel("Game: "..game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name) GamesTab:Button("No Cooldown", function() for i, v in pairs(game:GetService('ReplicatedStorage')['Shared_Modules'].Tools:GetDescendants()) do if v:IsA('ModuleScript') then local Module = require(v) Module.DEBOUNCE = 0 end end end) end -- Adding buttons for other games -- Button for Aimlock V2 script OtherGamesTab:Button("Aimlock V2", function() loadstring(game:HttpGet("https://gitlab.com/te4224/Scripts/-/raw/main/Universal%20Aimbot%20N%20Esp/v2/main.lua"))() end) -- Button for 3m1 Fast Dash Script OtherGamesTab:Button("3m1 Fast Dash", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/OriginPoints/m1r/refs/heads/main/m1r.lua"))() end) -- Button for tsb auto block OtherGamesTab:Button("Tsb Auto Block", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Cyborg883/TSB/refs/heads/main/CombatGui"))() end) -- Button for Fake Lag Script OtherGamesTab:Button("Fake Lag", function() loadstring(game:HttpGet"https://pastebin.com/raw/snyg1ukv")() end) -- Button for Infinite Yield Script OtherGamesTab:Button("Infinite Yield", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end) -- Button for Tsb Cheat Hub OtherGamesTab:Button("Tsb Cheat Hub", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Reallyools/Reallyools/refs/heads/main/TRASH-HUB/TSB%20SCRIPT"))() end) -- Button for Insta Kill Tsb OtherGamesTab:Button("Insta Kill Tsb", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Reallyools/Reallyools/refs/heads/main/TSB%20SCRIPTS-Auto%20Void%20Killv2"))() end) -- Button for Tempest Hub Tsb OtherGamesTab:Button("Tempest Hub Tsb", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/10tempest01/tempest-hub/refs/heads/main/Launcher.lua"))() end) -- Button for Sols RNG script OtherGamesTab:Button("Sols RNG", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Looser3itx/Hmmmmmmmmmmmmmmmmmmmmmmmmmmmm/main/loader.lua"))() end) -- Button for Blade Ball script OtherGamesTab:Button("Blade Ball", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Code4Zaaa/X7Project/main/Game/AutoParryOnly"))() end) -- Button for Blox Fruits script OtherGamesTab:Button("Blox Fruits", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/REDzHUB/BloxFruits/main/redz9999"))() end) -- Button for Vape script (Bedwars) OtherGamesTab:Button("Vape (Bedwars)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))() end) -- Button for Volleyball Legends Hitbox OtherGamesTab:Button("Volleyball Legends Hitbox", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/5aud888/5UADNEWV2/refs/heads/main/5UADV2WOW", true))() end) -- Button for Volleyball Legends Directional Spiking OtherGamesTab:Button("Volleyball Legends Direction View", function() loadstring(game:HttpGet("https://pastebin.com/raw/ZjPjpJ1f", true))() end) -- Button for Better Volleyball Legends Hub OtherGamesTab:Button("Best Volleyball Legends Hub (No Key)", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Xm2iufas09ijmF/sigma-hub/refs/heads/main/temp.lua", true))() end) -- Button for Best World Zero Script OtherGamesTab:Button("Best World Zero Script", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/justdoingrandomstuff/World-Zero/refs/heads/main/autofarm", true))() end) OtherGamesTab:Button("My Sailor Piece", function() script_key="yurcOJItTHcQHltAHpkNIAZPLInYxGzS" loadstring(game:HttpGet("https://api.luarmor.net/files/v3/loaders/064defa844d413e44319b04631c36357.lua"))() end)