local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/Robojini/Tuturial_UI_Library/main/UI_Template_1"))() local Window = Library.CreateLib("Shitty ahh script", "RJTheme3") local Tab = Window:NewTab("Main") local Section = Tab:NewSection("Ignore this") Section:NewButton("Make hitbox bigger", "Use it at: Tails,Eggman, Shadow, Metal", function() local Players = game:GetService("Players") local localPlayer = Players.LocalPlayer local function resizeOtherPlayers() for _, player in ipairs(Players:GetPlayers()) do if player ~= localPlayer then -- Exclude the local player local character = player.Character if character then local torsoFolder = character:FindFirstChild("torso") -- Find the "torso" folder if torsoFolder then local collisionMesh = torsoFolder:FindFirstChild("collision") -- Find the "collision" MeshPart if collisionMesh and collisionMesh:IsA("MeshPart") then -- Double the size of the MeshPart collisionMesh.Size = collisionMesh.Size * 10 collisionMesh.CanCollide = false -- Disable collision end end end end end end -- Apply effect to players when the script starts resizeOtherPlayers() -- Update when a new player joins Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function() task.wait(1) -- Wait for the character to fully load resizeOtherPlayers() end) end) end)