I am writing code for a simple rocket launcher, but, as soon as i click it, it throws "This mouse is no longer active" on the console. Heres my code:
01 | tool.Equipped:Connect( function (m) |
02 | tool.Activated:Connect( function () |
03 | local targ = m.Hit |
04 | local p = script.Parent.Parent.bam |
05 | local part = Instance.new( "Part" ) |
06 | part.Name = "boom" |
07 | part.CFrame = p.CFrame * CFrame.new(- 1 , 0 , 0 ) |
08 | part.Parent = workspace |
09 | local target = Instance.new( "Part" ) |
10 | target.Position = targ |
11 | target.Parent = workspace |
12 | local ropor = Instance.new( "RocketPropulsion" ) |
13 | ropor.Parent = part |
14 | ropor.Target = target |
15 | ropor:Fire() |
16 | end ) |
17 | end ) |
Help?
If you're using a Server Sided Script try using a remote and send Mouse.Target through said remote. If you're using a Client Sided Script (Local Script) just index the mouse.
1 | local player = game.Players.LocalPlayer |
2 | local mouse = player:GetMouse() |
3 | --All of your other code |
With the server, you are supposed to send the mouse.Target through a remote.Get the Mouse.Target from the client MouseTarget
if you did this it should look like this,
1 | local remote -- Get Your Remote |
2 | remote.OnServerEvent:Connect( function (player, MouseTarget) |
3 | -- ur code //make sure to make the target the MouseTarget |
4 | end ) |
Btw, the reason you would use Mouse.Target is it gets any object located where the mouse is