I want to know how to find out who Clicked and then use his Character... am sure it's not like hit.Parent or something... so plz help me here guys...
put SurfaceGui in StarterGui
Then set Adornee property to the brick you want it on
Then the player who clicked is always the LocalPlayer
function onClicked(player) print(player.." clicked!" end script.Parent.MouseButton1Down:connect(onClicked)
That finds the player and should work. Let me know if it doesn't!