How can I got my mouse in a script in the workspace if we can ?
In a script, to define a variable for a Player's Mouse, simple use GetMouse. Must be a LocalScript
local Player = Game.Players.LocalPlayer local Mouse = Player:GetMouse() Mouse.Button1Down:connect(function() print("Button 1 is down") end)