Help with Local Scripting?
01 | local p = game.Players.LocalPlayer.Character |
04 | local Player = game.Players.LocalPlayer |
05 | local Mouse = Player:GetMouse() |
07 | Mouse.KeyDown:connect( function (Key) |
09 | if game.Players.LocalPlayer.MO.Value = = "Fire" then |
10 | local Part = Instance.new( "Part" ) |
11 | local Fire = Instance.new( "Fire" , Part) |
15 | Part.BrickColor = BrickColor.new( "Really red" ) |
16 | Part.Size = Vector 3. new( 1 , 1 , 1 ) |
17 | Part.Parent = game.Workspace |
18 | Part.Position = p.Torso.Position + p.Torso.CFrame.lookVector* 5 |
19 | Part.Velocity = p.Torso.CFrame.lookVector* 5 * 40 + Vector 3. new( 0 , 40 , 0 ) |
20 | Part.BottomSurface = "Smooth" |
21 | Part.TopSurface = "Smooth" |
24 | Part.Touched:connect( function (hit) |
25 | local humanoid = hit.Parent:FindFirstChild( "Humanoid" ) |
26 | if humanoid ~ = nil then |
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.