I just started testing my scripts in game... errors ?
Asked by
8 years ago Edited 8 years ago
ALL OF them work in F6 or solo mode but not in game mode. i know cuz scripts load faster than player, but how u fix it ?
I get this error: attempt to index field 'LocalPlayer' (a nil value) and i have no IDEA how to fix this
This script is confusing me alot, also this isn't a localscript it doesn't even work in a localscritp cuz its in a brick.
01 | function teleportPlayer(pos, torso) |
03 | char.CFrame = CFrame.new(Vector 3. new(pos.x, pos.y, pos.z)) |
06 | lvl = script.Parent.Parent.Parent.LevelValue |
09 | script.Parent.Touched:connect( function (part) |
11 | local human = part.Parent:FindFirstChild( "Humanoid" ) |
12 | if (human ~ = nil ) then |
13 | print ( "Human touched door" ) |
14 | local player = game.Players:GetPlayerFromCharacter(human.Parent) |
15 | if (player = = nil ) then return end |
16 | local stats = player:FindFirstChild( "leaderstats" ) |
17 | local sp = stats:FindFirstChild( "test" ) |
18 | if sp = = nil then return false end |
19 | print ( "Human passed test" ) |
23 | GUI = Instance.new( "ScreenGui" ) |
24 | GUI.Name = "ScreenGuiLVL" |
25 | GUI.Parent = game.Players.LocalPlayer.PlayerGui |
Also, why does even the error happen about player nil if this is in a brick ? it should get the player by touching ?
this script works everywhere else but not in-game.