ServerScript: (This script is a server script, not a localscript)
01 | local NPC = script.Parent.Parent -- who is talking (in this case workspace.NPC) |
02 | local CC = Enum.ChatColor.White -- you can change Red to Blue, Green or White |
03 | local waittime = 2 -- time you have to wait for each message |
04 |
05 |
06 | --guts (DONT TOUCH) |
07 | local function Chat(message: string, color) |
08 | game:GetService( "Chat" ):Chat(NPC.Head, message, CC) |
09 | end |
10 | local function Jump() |
11 | NPC.Humanoid.Jump = true |
12 | end |
13 | local function Move(pos: Vector 3 , spawn_thread) |
14 | spawn_thread = spawn_thread or false |
15 | NPC.Humanoid:MoveTo(pos) |
Error: attempt to index nil with 'Character'
The problem is on the last line, LocalPlayer doesn't work on the server, if you want to kill all the players in the server, loop through the players and kill them, also, don't destroy the character, they won't be able to respawn (unless you don't want them to lol)
01 | -- code before lol |
02 | -- should be on last line with wait(3) and localPlayer, just replace those lines |
03 | wait( 3 ) |
04 | for _, player in pairs (game.Players:GetPlayers()) do |
05 | if (player.Character) then |
06 | -- if the player has a character |
07 |
08 | -- player.Character:Destroy() -- Optional |
09 |
10 | local humanoid = player.Character:FindFirstChild( "Humanoid" ) |
11 | if (humanoid) then |
12 | -- If the player has a humanoid |
13 | humanoid.Health = 0 |
14 | end |
15 | end |
16 | end |