You can get the player using local player and player functions but how do you get it using the mouse? I've tried using Mouse.Target which gets non-living objects but it doesn't get the player. How do i get the player using the mouse?
01 | local mouse = player:GetMouse() |
02 | local click = false |
03 | local function onclick() |
04 | if not click then |
05 | click = true |
06 | print (mouse.Target) |
07 | wait( 0.5 ) |
08 | click = false |
09 | end |
10 | end |
11 | mouse.Button 1 Down:Connect(onclick) |
This is not a request site!
But luckily it is easy to do with the proper variables and functions.
PUT THIS IN STARTERGUI!.
I worked through your script and i found the solution and you didn't define a variable for player. Another error you had is that you didn't know who to correctly define a OnClick function with a player mouse. Also if you ask me but what i can tell by the script this is poor understanding of code especially when its client sided.
01 | local Player = game.Players.LocalPlayer |
02 | local Mouse = Player:GetMouse() |
03 |
04 | local click = false |
05 |
06 | local function OnClick() |
07 | if click = = false then |
08 | click = true |
09 | print (Mouse.Target) |
10 | wait( 1 ) |
11 | click = false |
12 | end |
13 | end |
14 |
15 | Mouse.Button 1 Down:Connect(OnClick) |