Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Server Script doesn't want to interact with Player. Script is in workspace. What to do?

Asked by 3 years ago

ServerScript: (This script is a server script, not a localscript)

01local NPC = script.Parent.Parent -- who is talking (in this case workspace.NPC)
02local CC = Enum.ChatColor.White -- you can change Red to Blue, Green or White
03local waittime = 2 -- time you have to wait for each message
04 
05 
06--guts (DONT TOUCH)
07local function Chat(message: string, color)
08    game:GetService("Chat"):Chat(NPC.Head, message, CC)
09end
10local function Jump()
11    NPC.Humanoid.Jump = true
12end
13local function Move(pos: Vector3, spawn_thread)
14    spawn_thread = spawn_thread or false
15    NPC.Humanoid:MoveTo(pos)
View all 55 lines...

Error: attempt to index nil with 'Character'

0
'LocalPlayer' can only be used in localscript not server scripts. To have Local Script and Server scripts communicate together use RemoteEvents: https://developer.roblox.com/en-us/articles/Remote-Functions-and-Events MarkedTomato 810 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago
Edited 3 years ago

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
03wait(3)
04for _, 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
16end
Ad

Answer this question