Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --no touchie
- wait()
- local plr = game.Players.LocalPlayer
- local char = plr.Character or plr.CharacterAdded:wait()
- local gui = Instance.new("ScreenGui", plr.PlayerGui)
- local hi = Instance.new("TextButton", gui)
- hi.Style = "RobloxRoundButton"
- hi.Position = UDim2.new(0.87, 0,0.895, 0)
- hi.Size = UDim2.new(0.126, 0,0.094, 0)
- hi.TextColor3 = Color3.new(0,0,0)
- hi.Text = "Metal Cap"
- hi.TextSize = 30
- hi.Font = "Arcade"
- local SP = Instance.new("Model")
- SP.Name = plr.Name.."Clothing"
- SP.Parent = game.ReplicatedStorage
- wait(1)
- local char = plr.Character or plr.CharacterAdded:Wait()
- char:FindFirstChild("Shirt"):Clone().Parent = SP
- char:FindFirstChild("Pants"):Clone().Parent = SP
- char:FindFirstChild("Body Colors"):Clone().Parent = SP
- function metal()
- char.Humanoid.Name = "Metallic"
- local music = Instance.new("Sound")
- music.Looped = true
- music.SoundId = "rbxassetid://1391488070"
- music.Parent = char.Head
- music.Volume = 2
- music:Play()
- char:FindFirstChild("Shirt"):Remove()
- char:FindFirstChild("Pants"):Remove()
- hi.Visible = false
- char.Head.Reflectance = 0.5
- char.Torso.Reflectance = 0.5
- char["Left Arm"].Reflectance = 0.5
- char["Right Arm"].Reflectance = 0.5
- char["Left Leg"].Reflectance = 0.5
- char["Right Leg"].Reflectance = 0.5
- local ff = Instance.new("ForceField", char)
- ff.Visible = false
- local skin = Instance.new("Skin")
- skin.Parent = char
- skin.SkinColor = BrickColor.new("Dark stone grey")
- char.Head.Material = "SmoothPlastic"
- char.Torso.Material = "SmoothPlastic"
- char["Left Arm"].Material = "SmoothPlastic"
- char["Right Arm"].Material = "SmoothPlastic"
- char["Left Leg"].Material = "SmoothPlastic"
- char["Right Leg"].Material = "SmoothPlastic"
- char.Head.face.Transparency = 1
- char:FindFirstChildOfClass("Humanoid"):SetStateEnabled("Swimming", false)
- local hat = Instance.new("Part")
- hat.Name = "Fedora"
- hat.Parent = char.Head
- hat.Reflectance = 0.5
- hat.BrickColor = BrickColor.new("Dark stone grey")
- hat.CanCollide = false
- local hatMesh = Instance.new("SpecialMesh")
- hatMesh.Parent = hat
- hatMesh.MeshId = "rbxassetid://46834172"
- hatMesh.Scale = Vector3.new(1.1,1.1,1.1)
- local weld = Instance.new("Weld")
- weld.Parent = char.Head
- weld.Part0 = hat
- weld.Part1 = char.Head
- weld.C0 = CFrame.new(0, -.6, 0.1)
- for _, h in pairs(char:GetChildren()) do
- if h.ClassName == "Accessory" then
- h.Handle.Transparency = 1
- end
- end
- wait(27.7)
- music:Remove()
- local sp = game.ReplicatedStorage:FindFirstChild(plr.Name.."Clothing")
- sp.Shirt:Clone().Parent = char
- sp.Pants:Clone().Parent = char
- char.Head.BrickColor = sp["Body Colors"].HeadColor
- char.Torso.BrickColor = sp["Body Colors"].TorsoColor
- char["Left Arm"].BrickColor = sp["Body Colors"].LeftArmColor
- char["Left Leg"].BrickColor = sp["Body Colors"].LeftLegColor
- char["Right Arm"].BrickColor = sp["Body Colors"].RightArmColor
- char["Right Leg"].BrickColor = sp["Body Colors"].RightLegColor
- char.Head.Reflectance = 0
- char.Torso.Reflectance = 0
- char["Left Arm"].Reflectance = 0
- char["Right Arm"].Reflectance = 0
- char["Left Leg"].Reflectance = 0
- char["Right Leg"].Reflectance = 0
- char:FindFirstChildOfClass("Humanoid"):SetStateEnabled("Swimming", true)
- hat:Remove()
- weld:Remove()
- ff:Remove()
- char.Head.face.Transparency = 0
- char:WaitForChild("Metallic").Name = "Humanoid"
- for _, h in pairs(char:GetChildren()) do
- if h.ClassName == "Accessory" then
- h.Handle.Transparency = 0
- end
- end
- wait(5)
- hi.Visible = true
- end
- function remove()
- SP:Remove()
- hi.Visible = false
- end
- hi.MouseButton1Click:connect(metal)
- char.Humanoid.Died:connect(remove)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement