How do I get a certain player mouse?
Asked by
7 years ago Edited 7 years ago
So I'm making a turret, a switch has to be stepped on in order to activate the turret, the turret will always look at the player's mouse. But how do I get the mouse of the player that stepped on the button instead of getting everyone's mouse? Here is the script that makes the turret follow the mouse (Everyone's mouse?)
This Script is not a LocalScript, and it is inside Workspace.
01 | function FollowMouse(p) |
02 | script.Parent.ControllableTurret 1. ActivatePart.Touched:connect( function () |
03 | repeat wait() until game.Workspace.ControllableTurret 1. TestingCannon.SpinningPart.Base |
06 | local player = game.Players.LocalPlayer |
07 | local m = player:GetMouse() |
11 | local base = game.Workspace.ControllableTurret 1. TestingCannon.SpinningPart:WaitForChild( "Base" ) |
12 | local h = player.Character:WaitForChild( "Head" ) |
13 | base.CFrame = CFrame.new(base.Position,Vector 3. new(t.X,t.Y,t.Z)) |
^Also this Script is disabled^, an another script would activate this script.
If you want to see that script as well, here it is:
01 | local effectPart = game.Workspace.ControllableTurret 1. EffectPart |
02 | local activePart = game.Workspace.ControllableTurret 1. ActivatePart |
03 | local sp = script.Parent |
04 | local followMouse = game.Workspace.FollowMouseScript |
05 | local fireballControl = sp.FireballControl |
07 | local buttonPressed = false |
09 | activePart.Touched:connect( function (hit) |
10 | if not buttonPressed then |
14 | if hit.Parent and activePart.BrickColor ~ = BrickColor.new( "Sea green" ) then |
15 | local hum = hit.Parent:FindFirstChild( "Humanoid" ) |
16 | if hum and effectPart.BillboardGui.StatusText.Text ~ = "COOLDOWN" or hum and effectPart.BillboardGui.StatusText.Text ~ = "ACTIVATED" then |
17 | activePart.BrickColor = BrickColor.new( "Sea green" ) |
18 | effectPart.BrickColor = BrickColor.new( "Sea green" ) |
19 | effectPart.BillboardGui.StatusText.Text = "ACTIVATED" |
20 | effectPart.BillboardGui.StatusText.TextColor 3 = Color 3. new( 0 , 255 , 0 ) |
21 | activePart.Active:Play() |
22 | game.Workspace.ControllableTurret 1. TestingCannon.SpinningPart.Base.Material = "Neon" |
23 | game.Workspace.ControllableTurret 1. TestingCannon.SpinningPart.Barrel.Material = "Neon" |
24 | activePart.ParticleEmitter.Enabled = true |
25 | sp.CannonStuff.Ammo.Visible = true |
26 | sp.FireballControl.Disabled = false |
27 | followMouse.Disabled = false |
31 | activePart.BrickColor = BrickColor.new( "Cool yellow" ) |
32 | effectPart.BrickColor = BrickColor.new( "Cool yellow" ) |
33 | effectPart.BillboardGui.StatusText.Text = "COOLDOWN" |
34 | effectPart.BillboardGui.StatusText.TextColor 3 = Color 3. new( 255 , 255 , 0 ) |
35 | activePart.Deactive:Play() |
36 | game.Workspace.ControllableTurret 1. TestingCannon.SpinningPart.Base.Material = "SmoothPlastic" |
37 | game.Workspace.ControllableTurret 1. TestingCannon.SpinningPart.Barrel.Material = "SmoothPlastic" |
38 | sp.CannonStuff.Ammo.Visible = false |
39 | activePart.ParticleEmitter.Enabled = false |
40 | activePart.ParticleEmitter 2. Enabled = true |
41 | sp.FireballControl.Disabled = true |
42 | followMouse.Disabled = true |
44 | activePart.BrickColor = BrickColor.new( "Dark stone grey" ) |
45 | effectPart.BrickColor = BrickColor.new( "Dark stone grey" ) |
46 | if sp.CannonStuff.Ammo.Amount.Value > 0 then |
47 | effectPart.BillboardGui.StatusText.Text = "AVAILABLE" |
48 | elseif sp.CannonStuff.Ammo.Amount.Value = = 0 then |
49 | effectPart.BillboardGui.StatusText.Text = "NO AMMO, AVAILABLE." |
50 | effectPart.BillboardGui.StatusText.TextColor 3 = Color 3. new( 255 , 0 , 0 ) |
52 | activePart.ParticleEmitter 2. Enabled = false |
53 | effectPart.BillboardGui.StatusText.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
^This script is inside a GUI. (That is inside StarterGUI)^
And it's a Script, not a LocalScript.