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

Help with Local Scripting?

Asked by
Scootakip 299 Moderation Voter
9 years ago
01local p = game.Players.LocalPlayer.Character
02 
03 
04local Player = game.Players.LocalPlayer
05local Mouse = Player:GetMouse()
06 
07Mouse.KeyDown:connect(function(Key)
08    if Key == 'l' then
09    if game.Players.LocalPlayer.MO.Value == "Fire" then
10    local Part = Instance.new("Part")
11    local Fire = Instance.new("Fire", Part)
12    Fire.Size = 1
13    Fire.Heat = 1
14        Part.Shape = "Ball"
15        Part.BrickColor = BrickColor.new("Really red")
View all 32 lines...

I find this issue odd, but whatever. The issue is that the script can't find 'p' in line 18. Yes, this script is inside of a LocalScript. This issue also doesn't happen in offline-testing, I only get this issue with server testing. Some help with this issue? The LocalScript is inside of the StarterGui.

1 answer

Log in to vote
1
Answered by
1waffle1 2908 Trusted Badge of Merit Moderation Voter Community Moderator
9 years ago

Scripts run on the client before the character is created, so you can't directly get the character right away. Instead, do this:

1local Player = game.Players.LocalPlayer
2local p = Player.CharacterAdded:wait()
0
Neat, it works now, thanks! One more issue, the part where it's supposed to kill doesn't work and there aren't any messages about it in the output. Some help with that? Scootakip 299 — 9y
1
You're connecting to Touched after you've already destroyed the part. That doesn't make any sense. 1waffle1 2908 — 9y
0
Didn't catch that at first, thanks. Scootakip 299 — 9y
Ad

Answer this question