How would I make it so only my username is hidden? So like if people get close to me they cant see it, but people can see other peoples usernames
1 Like
remove the name visibility within your humanoid with script that detects you
edit: pic of humanoid properties and how it should remove
How would i get to my humanoid with this?
local player = game:GetService("Players").LocalPlayer
game.Players.PlayerAdded:connect(function(plr)
if plr.Name == "slenderW0lf_YT" then
end
end)
https://developer.roblox.com/en-us/api-reference/property/Player/Character
edit: i remember using
local char = plr.Character
1 Like
local player = game:GetService("Players").LocalPlayer
game.Players.PlayerAdded:connect(function(plr)
if plr.Name == "slenderW0lf_YT" then
local char = plr.Character
--then you find the humanoid and so on
end
end)
You could just set DisplayName
to nothing.
Thats why i put “deleteThis” in that field o.o