-- Roblox FPS Booster Script for BedWars -- Note: Use responsibly and ensure it complies with Roblox's terms of service. local function fpsBooster() -- Set FPS cap setfpscap(9999) -- Function to remove textures local function removeTextures(object) if object:IsA("BasePart") or object:IsA("Decal") or object:IsA("Texture") then object:Destroy() end end -- Iterate through all objects to remove textures for _, v in pairs(workspace:GetDescendants()) do removeTextures(v) end -- Remove chat bubbles local function removeChatBubbles() local ChatService = game:GetService("Chat") ChatService.BubbleChatEnabled = false end removeChatBubbles() -- Change sky to grey local Lighting = game:GetService("Lighting") Lighting.Sky:Destroy() local newSky = Instance.new("Sky") newSky.Parent = Lighting newSky.SkyboxBk = "" newSky.SkyboxDn = "" newSky.SkyboxFt = "" newSky.SkyboxLf = "" newSky.SkyboxRt = "" newSky.SkyboxUp = "" newSky.CelestialBodiesShown = false newSky.SunAngularSize = 0 Lighting.Brightness = 1 Lighting.Ambient = Color3.fromRGB(128, 128, 128) -- Set player skin color to grey and remove clothes local function setPlayerAppearance(player) if player and player.Character then for _, part in pairs(player.Character:GetChildren()) do if part:IsA("BasePart") then part.Color = Color3.fromRGB(128, 128, 128) end end -- Remove clothes for _, item in pairs(player.Character:GetChildren()) do if item:IsA("Shirt") or item:IsA("Pants") or item:IsA("ShirtGraphic") then item:Destroy() end end end end setPlayerAppearance(game.Players.LocalPlayer) -- Function to modify armor and sword colors local function modifyGearColors(player) if player and player.Character then for _, item in pairs(player.Character:GetChildren()) do if item:IsA("Tool") then for _, obj in pairs(item:GetDescendants()) do if obj:IsA("BasePart") then if math.random() > 0.4 then obj.Color = Color3.fromRGB(128, 128, 128) else obj.Color = Color3.fromRGB(139, 69, 19) end end end end end end end modifyGearColors(game.Players.LocalPlayer) -- Monitor for character changes game.Players.LocalPlayer.CharacterAdded:Connect(function(character) setPlayerAppearance(game.Players.LocalPlayer) modifyGearColors(game.Players.LocalPlayer) end) end fpsBooster()