01 | local down = true |
02 | local player = game.Players.LocalPlayer |
03 | local mouse = player:GetMouse() |
04 | local we = false |
05 |
06 | mouse.KeyDown:Connect( function (key) |
07 | key = key:lower() |
08 | if key = = "v" then |
09 | local e = Instance.new( "Part" ,workspace) |
10 |
11 | e.Position = mouse.Hit.Position --here is error |
12 |
13 | end |
14 | end ) |
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! |
02 | local UserInputService = game:GetService( "UserInputService" ) |
03 |
04 | local player = game.Players.LocalPlayer |
05 | local mouse = player:GetMouse() |
06 |
07 | local 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 |
15 | end |
16 |
17 | UserInputService.InputBegan:Connect(onInputBegan) |