RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that makes my character strong"
-- local script local Player = game:GetService('Players').LocalPlayer local function makeStrong() local character = Player.Character or Player.CharacterAdded:Wait() local humanoid = character:FindFirstChild('Humanoid') if humanoid then humanoid.MaxHealth = 1000 humanoid.Health = 1000 humanoid.WalkSpeed = 50 humanoid.JumpPower = 100 end end Player.CharacterAdded:Connect(makeStrong) makeStrong()