Well, you know how in a game like Prison Life for example, how if you hover over the player, it'll show their name? Well, I'm not doing that. But can someone help guide me on how I could make some hoverplayer function, or something...? I'm not asking anyone to do it for me, just a guide or a website tutorial would be much appreciated.
Best to do this in a local script (If you want to effect parts, you need to use Remotes)
Here is a local script I whipped up quickly:
local Plr = game.Players.LocalPlayer local Mouse = Plr:GetMouse() Mouse.Move:connect(function() -- Everytime you move your mouse if Mouse.Target ~= nil and Mouse.Target.Parent:FindFirstChild("Humanoid") then local Char = Mouse.Target.Parent local isPlayer = game.Players:GetPlayerFromCharacter(Char) -- This is to make sure you're checking an actual player, not a possible NPC or something else with Humanoid if isPlayer then -- Now you place the code that can show their name or fire a Remote end end end)
this is just a possible way, there are others but here is one.