I want the players to have more than 100 health. How do I do this? (Include the script in your answer).
You'd need to use the PlayerAdded and CharacterAdded event. Something like this:
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(character) character.Humanoid.MaxHealth = 1000 character.Humanoid.Health = 1000 end) end)