I'm trying to make custom abilities for certain people but I don't know how to do this, please help
Local script in StarterGui / StarterPlayer.StarterPlayersScripts / StarterPack ...
1 | game.Players.LocalPlayer.CharacterAdded:Connect( function (Character) |
2 | if Character.Name = = 'SwordsDestinyGames' or 'name2' or 'name3' then |
3 | Character.Humanoid.WalkSpeed = 100 -- example |
4 | end |
5 | end ) |
1 | local player = game.Players.LocalPlayer |
2 | local char = player.Character or CharacterAdded:wait() |