Hello, I am trying to make a roblox gorilla tag game and whenever I run the script the legs only turn transparent on the client. The script is also in serverscriptservice. Could anyone help me with this??
local Players = game.Players
function PlayerJoined(Player)
local function RemoveMeshes(Character)
local Humanoid = Character:WaitForChild("Humanoid")
wait()
local CurrentDescription = Humanoid:GetAppliedDescription()
CurrentDescription.LeftLeg = 0
CurrentDescription.RightLeg = 0
Character.LeftLowerLeg.Transparency = 1
Character.LeftUpperLeg.Transparency = 1
Character.LeftFoot.Transparency = 1
Character.RightLowerLeg.Transparency = 1
Character.RightUpperLeg.Transparency = 1
Character.RightFoot.Transparency = 1
Humanoid:ApplyDescription(CurrentDescription)
end
Player.CharacterAdded:Connect(RemoveMeshes)
end
Players.PlayerAdded:Connect(PlayerJoined)