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

i have been getting mouse nill value how do i fix?

Asked by 6 years ago
01local down = true
02local player = game.Players.LocalPlayer
03local mouse = player:GetMouse()
04local we = false
05 
06mouse.KeyDown:Connect(function(key)
07    key = key:lower()
08    if key == "v" then
09local e = Instance.new("Part",workspace)
10 
11    e.Position = mouse.Hit.Position --here is error
12 
13    end
14end)
0
I believe KeyDown is deprecated. Use UserInputService instead ABK2017 406 — 6y
0
^ lunatic5 409 — 6y
0
it wont work helleric -3 — 6y
0
if mouse then <-- use this, easy and simple fix greatneil80 2647 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

First of all, you really should rewrite this to not use deprecated services.

However, I think your issue will be solved if you simply change mouse.Hit.Position to mouse.Hit.p

I've rewritten this using newer services for you!

01--Warning: Untested code. I'm typing this into the answer box!
02local UserInputService = game:GetService("UserInputService")
03 
04local player = game.Players.LocalPlayer
05local mouse = player:GetMouse()
06 
07local function onInputBegan(input, gameProcessed)
08    if not gameProcessed and input.UserInputType == Enum.UserInputType.Keyboard then
09        if input.KeyCode == Enum.KeyCode.V then
10            local e = Instance.new("Part")
11                e.Position  = mouse.Hit.p
12                e.Parent    = workspace
13        end
14    end
15end
16 
17UserInputService.InputBegan:Connect(onInputBegan)
0
This is wrong. CFrame.p is deprecated, it is CFrame.Position now. OP was correct. User#19524 175 — 6y
0
Oh damn! You learn something new every day! boatbomber 27 — 6y
Ad

Answer this question