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

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.

01--// Services \\--
02local ReplicatedStorage = game:GetService("ReplicatedStorage")
03local Debris = game:GetService('Debris')
04 
05--// Variables \\--
06local Remote = ReplicatedStorage.FireBallEvent
07local FireBall = ReplicatedStorage.FireBall
08local player = game.Workspace:FindFirstChild(game.Workspace.PlayerName.Value)
09 
10--// Settings \\--
11local Damage = 20
12 
13local ServerDebounces = {}
14 
15Remote.OnServerEvent:Connect(function(plr, Mouse)
View all 55 lines...

The local script in StarterGui will fire the event when the button is pressed:

01local contextActionService = game:GetService("ContextActionService")
02local Mouse = game.Players.LocalPlayer:GetMouse()
03 
04function onButtonPress()
05game.ReplicatedStorage.FireBallEvent:FireServer(Mouse)
06end
07 
08local mobilebutton = contextActionService:BindAction("ActivateSpellButton", onButtonPress, true, "Q")
09contextActionService:SetPosition("ActivateSpellButton", UDim2.new(0.72,-25,0.20,-25))
10contextActionService:SetImage("ActivateSpellButton", "http://www.roblox.com/asset/?id=247421777")
0
Could you send the client script so I can see what Mouse is orcazate 170 — 4y
0
Ok iiPizzaCraver 71 — 4y
0
I've updated the post iiPizzaCraver 71 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

Not entirely sure, but I think it's LookVector (with a capital l), not lookVector.

0
I've checked the wiki, its not a capital l. Please can u comment that instead of putting it as an answer please iiPizzaCraver 71 — 4y
Ad

Answer this question