I tried to make a script that delete player face when they join but its not working
Here’s the script
local function PA(player)
local Character = player:Character
local Head = Character.WaitForChild("Head")
for i, v in pairs(Head:GetChildren()) do
if v:IsA("Texture") then
v:Destroy()
end
end
end
game.Players.PlayerAdded:Connect(PA)
I also tried this
local function PA(player)
local Character = player.Character
local Head = Character:FindFirstChild("Head")
Head.face:Destroy()
end
game.Players.PlayerAdded:Connect(PA)
I don’t know why you need this, but It’s here a simple working for all players version.
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Wait()
local character = player.Character
local face = character.Head.face
face:Destroy()
end)
It work thanks I need this because I want to duplicate the player Head because the R6 face has low quality and the player face is blocking the other head face its hard to explain but thanks