Attempt to index nil with lookVector?
Asked by
4 years ago Edited 4 years ago
I am making an RPG. I have scripted a working magic system and it works very well on PC. I wanted to add mobile support, which would fire this script when the button is pressed. However, I get the error in the title. Please help.
02 | local ReplicatedStorage = game:GetService( "ReplicatedStorage" ) |
03 | local Debris = game:GetService( 'Debris' ) |
06 | local Remote = ReplicatedStorage.FireBallEvent |
07 | local FireBall = ReplicatedStorage.FireBall |
08 | local player = game.Workspace:FindFirstChild(game.Workspace.PlayerName.Value) |
13 | local ServerDebounces = { } |
15 | Remote.OnServerEvent:Connect( function (plr, Mouse) |
16 | if not ServerDebounces [ plr ] then |
17 | ServerDebounces [ plr ] = true |
19 | local Char = plr.Character or plr.CharacterAdded:Wait() |
21 | local FireBallClone = FireBall:Clone() |
22 | FireBallClone.CFrame = Char.HumanoidRootPart.CFrame * CFrame.new( 0 , 0 ,- 3 ) |
23 | FireBallClone.Parent = workspace |
25 | local BodyVelocity = Instance.new( "BodyVelocity" ) |
26 | BodyVelocity.MaxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
27 | BodyVelocity.Velocity = Mouse.lookVector |
28 | BodyVelocity.Parent = FireBallClone |
33 | FireBallClone.Size = FireBallClone.Size + Vector 3. new( 0.07 , 0.07 , 0.07 ) |
34 | BodyVelocity.Velocity = Mouse.lookVector*i |
37 | ServerDebounces [ plr ] = false |
38 | Debris:AddItem(FireBallClone, 10 ) |
41 | FireBallClone.Touched:Connect( function (h) |
42 | if h.Parent:FindFirstChild( 'Humanoid' ) and h.Parent.Name ~ = plr.Name and Debounce then |
44 | local Enemy = h.Parent.Humanoid |
45 | Enemy:TakeDamage(Damage) |
46 | FireBallClone.Transparency = 1 |
47 | BodyVelocity:Destroy() |
49 | FireBallClone:Destroy() |
The local script in StarterGui will fire the event when the button is pressed:
01 | local contextActionService = game:GetService( "ContextActionService" ) |
02 | local Mouse = game.Players.LocalPlayer:GetMouse() |
04 | function onButtonPress() |
05 | game.ReplicatedStorage.FireBallEvent:FireServer(Mouse) |
08 | local mobilebutton = contextActionService:BindAction( "ActivateSpellButton" , onButtonPress, true , "Q" ) |
09 | contextActionService:SetPosition( "ActivateSpellButton" , UDim 2. new( 0.72 ,- 25 , 0.20 ,- 25 )) |