local noob = workspace:FindFirstChild("Players") and workspace.Players:FindFirstChild("Survivors") and workspace.Players.Survivors:FindFirstChild("Noob") if not noob then return end local shirtId = "http://www.roblox.com/asset/?id=7589917956" local pantsId = "http://www.roblox.com/asset/?id=4899971822" local decalId = "rbxassetid://70642960525660" local hatMeshId = "http://www.roblox.com/asset/?id=17424204" local hatTextureId = "http://www.roblox.com/asset/?id=17424198" local fixedColor = Color3.fromRGB(202, 203, 209) if noob:FindFirstChild("ExpressionHolder") then noob.ExpressionHolder:Destroy() end for _, v in pairs(noob:GetChildren()) do if v:IsA("Shirt") or v:IsA("Pants") then v:Destroy() end end local shirt = Instance.new("Shirt") shirt.ShirtTemplate = shirtId shirt.Parent = noob local pants = Instance.new("Pants") pants.PantsTemplate = pantsId pants.Parent = noob local head = noob:FindFirstChild("Head") if head then for _, v in pairs(head:GetChildren()) do if v:IsA("Decal") then v:Destroy() end end local decal = Instance.new("Decal") decal.Texture = decalId decal.Face = Enum.NormalId.Front decal.Parent = head end local bodyColors = noob:FindFirstChildOfClass("BodyColors") if not bodyColors then bodyColors = Instance.new("BodyColors") bodyColors.Parent = noob end bodyColors.HeadColor3 = fixedColor bodyColors.LeftArmColor3 = fixedColor bodyColors.RightArmColor3 = fixedColor bodyColors.LeftLegColor3 = fixedColor bodyColors.RightLegColor3 = fixedColor bodyColors.TorsoColor3 = fixedColor for _, part in pairs(noob:GetChildren()) do if part:IsA("BasePart") and part.Name ~= "HumanoidRootPart" then part.Color = fixedColor end end local hat = noob:FindFirstChild("GreenTopHat") if hat and hat:FindFirstChild("Handle") then local mesh = hat.Handle:FindFirstChild("Mesh") if mesh then mesh.MeshId = hatMeshId mesh.TextureId = hatTextureId mesh.Scale = Vector3.new(1.05, 1.05, 1.05) mesh.Offset = Vector3.new(0, -0.02, 0) task.spawn(function() while task.wait(1) do if mesh.TextureId ~= hatTextureId then mesh.TextureId = hatTextureId end end end) end hat.AttachmentPoint = CFrame.new( 0, 0.100000001, -0.300000012, 1, 0, 0, 0, 1, 0, 0, 0, 1 ) local weld = hat.Handle:FindFirstChildOfClass("Weld") if weld then weld.C1 = CFrame.new( 0, 0.600000024, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 ) weld.C0 = CFrame.new( 8.65838956e-09, 0.199999809, -0.300272256, 1, 0, 0, 0, 1, 0, 0, 0, 1 ) end end task.spawn(function() while task.wait(1) do if noob then bodyColors.HeadColor3 = fixedColor bodyColors.LeftArmColor3 = fixedColor bodyColors.RightArmColor3 = fixedColor bodyColors.LeftLegColor3 = fixedColor bodyColors.RightLegColor3 = fixedColor bodyColors.TorsoColor3 = fixedColor for _, part in pairs(noob:GetChildren()) do if part:IsA("BasePart") and part.Name ~= "HumanoidRootPart" then part.Color = fixedColor end end if hat and hat:FindFirstChild("Handle") then local mesh = hat.Handle:FindFirstChild("Mesh") if mesh and mesh.TextureId ~= hatTextureId then mesh.TextureId = hatTextureId end end end end end)