It’s night and I’m a bit tired and I can’t figure out how to get this to print the plr touching the part’s name.
script.Parent.Touched:Connect(function(hit)
if hit.Parent:FindFirstChild("Humanoid") then
local plr = game.Players:GetPlayerFromCharacter(hit.Parent)
print(plr.Name)
end
end)
Your script doesn’t seem wrong. Another forum say when ever the part is touched, it only show that the player is touching, but dummy not. I think .Touched has a bug.