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

How do i get the player using the mouse?

Asked by 5 years ago

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?

01local 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
10end
11mouse.Button1Down:Connect(onclick)
0
GetPlayerFromCharacter() on the parent of the BasePart that the mouse is pointing to DeceptiveCaster 3761 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

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.

01local Player = game.Players.LocalPlayer
02local Mouse = Player:GetMouse()
03 
04local click = false
05 
06local function OnClick()
07    if click == false then
08        click = true
09        print(Mouse.Target)
10        wait(1)
11        click = false
12    end
13end
14 
15Mouse.Button1Down:Connect(OnClick)
0
Sure enough when i looked through, in the end I managed to fix it. Thanks for your help! Fl3eandFlo3e 18 — 5y
Ad

Answer this question