I know this is not in your script, but you could also use a function that allows you to shorten the chatted name of a player in the game. For example: (without function) ;kill KDarren12, (with function) ;kill KD.
01 | function GetPlayer(targetedPlayerName) |
02 | for _,player in pairs (game:GetService( "Players" ):GetPlayers()) do |
03 | if targetedPlayerName:lower() = = player.Name:sub( 1 ,targetedPlayerName:len()):lower() then |
14 | Players.PlayerAdded:Connect( function (Player) |
15 | if Player:GetRankInGroup(GroupId) > = Int then |
16 | Player.Chatted:Connect( function (msg) |
17 | if msg:Sub( 1 , 11 ) = = Prefix.. "AddPoints " then |
18 | local Target = GetPlayer(msg:sub( 12 )) |
20 | print ( "Added points to player " ..Target) |