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

"This Mouse is no longer active" help?

Asked by
RAFA1608 543 Moderation Voter
5 years ago

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:

01tool.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)
17end)

Help?

1 answer

Log in to vote
0
Answered by
AizakkuZ 226 Moderation Voter
5 years ago
Edited 5 years ago

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.

1local player = game.Players.LocalPlayer
2local 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,

1local remote -- Get Your Remote
2remote.OnServerEvent:Connect(function(player, MouseTarget)
3-- ur code //make sure to make the target the MouseTarget
4end)

Btw, the reason you would use Mouse.Target is it gets any object located where the mouse is

Ad

Answer this question