Advertisement
Guest User

ROBLOX Metal Cap Script

a guest
Feb 17th, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. --no touchie
  2. wait()
  3. local plr = game.Players.LocalPlayer
  4. local char = plr.Character or plr.CharacterAdded:wait()
  5. local gui = Instance.new("ScreenGui", plr.PlayerGui)
  6. local hi = Instance.new("TextButton", gui)
  7. hi.Style = "RobloxRoundButton"
  8. hi.Position = UDim2.new(0.87, 0,0.895, 0)
  9. hi.Size = UDim2.new(0.126, 0,0.094, 0)
  10. hi.TextColor3 = Color3.new(0,0,0)
  11. hi.Text = "Metal Cap"
  12. hi.TextSize = 30
  13. hi.Font = "Arcade"
  14.  
  15. local SP = Instance.new("Model")
  16. SP.Name = plr.Name.."Clothing"
  17. SP.Parent = game.ReplicatedStorage
  18. wait(1)
  19. local char = plr.Character or plr.CharacterAdded:Wait()
  20. char:FindFirstChild("Shirt"):Clone().Parent = SP
  21. char:FindFirstChild("Pants"):Clone().Parent = SP
  22. char:FindFirstChild("Body Colors"):Clone().Parent = SP
  23.  
  24. function metal()
  25. char.Humanoid.Name = "Metallic"
  26. local music = Instance.new("Sound")
  27. music.Looped = true
  28. music.SoundId = "rbxassetid://1391488070"
  29. music.Parent = char.Head
  30. music.Volume = 2
  31. music:Play()
  32. char:FindFirstChild("Shirt"):Remove()
  33. char:FindFirstChild("Pants"):Remove()
  34. hi.Visible = false
  35. char.Head.Reflectance = 0.5
  36. char.Torso.Reflectance = 0.5
  37. char["Left Arm"].Reflectance = 0.5
  38. char["Right Arm"].Reflectance = 0.5
  39. char["Left Leg"].Reflectance = 0.5
  40. char["Right Leg"].Reflectance = 0.5
  41. local ff = Instance.new("ForceField", char)
  42. ff.Visible = false
  43. local skin = Instance.new("Skin")
  44. skin.Parent = char
  45. skin.SkinColor = BrickColor.new("Dark stone grey")
  46. char.Head.Material = "SmoothPlastic"
  47. char.Torso.Material = "SmoothPlastic"
  48. char["Left Arm"].Material = "SmoothPlastic"
  49. char["Right Arm"].Material = "SmoothPlastic"
  50. char["Left Leg"].Material = "SmoothPlastic"
  51. char["Right Leg"].Material = "SmoothPlastic"
  52. char.Head.face.Transparency = 1
  53. char:FindFirstChildOfClass("Humanoid"):SetStateEnabled("Swimming", false)
  54. local hat = Instance.new("Part")
  55. hat.Name = "Fedora"
  56. hat.Parent = char.Head
  57. hat.Reflectance = 0.5
  58. hat.BrickColor = BrickColor.new("Dark stone grey")
  59. hat.CanCollide = false
  60. local hatMesh = Instance.new("SpecialMesh")
  61. hatMesh.Parent = hat
  62. hatMesh.MeshId = "rbxassetid://46834172"
  63. hatMesh.Scale = Vector3.new(1.1,1.1,1.1)
  64. local weld = Instance.new("Weld")
  65. weld.Parent = char.Head
  66. weld.Part0 = hat
  67. weld.Part1 = char.Head
  68. weld.C0 = CFrame.new(0, -.6, 0.1)
  69. for _, h in pairs(char:GetChildren()) do
  70. if h.ClassName == "Accessory" then
  71. h.Handle.Transparency = 1
  72. end
  73. end
  74. wait(27.7)
  75. music:Remove()
  76. local sp = game.ReplicatedStorage:FindFirstChild(plr.Name.."Clothing")
  77. sp.Shirt:Clone().Parent = char
  78. sp.Pants:Clone().Parent = char
  79. char.Head.BrickColor = sp["Body Colors"].HeadColor
  80. char.Torso.BrickColor = sp["Body Colors"].TorsoColor
  81. char["Left Arm"].BrickColor = sp["Body Colors"].LeftArmColor
  82. char["Left Leg"].BrickColor = sp["Body Colors"].LeftLegColor
  83. char["Right Arm"].BrickColor = sp["Body Colors"].RightArmColor
  84. char["Right Leg"].BrickColor = sp["Body Colors"].RightLegColor
  85. char.Head.Reflectance = 0
  86. char.Torso.Reflectance = 0
  87. char["Left Arm"].Reflectance = 0
  88. char["Right Arm"].Reflectance = 0
  89. char["Left Leg"].Reflectance = 0
  90. char["Right Leg"].Reflectance = 0
  91. char:FindFirstChildOfClass("Humanoid"):SetStateEnabled("Swimming", true)
  92. hat:Remove()
  93. weld:Remove()
  94. ff:Remove()
  95. char.Head.face.Transparency = 0
  96. char:WaitForChild("Metallic").Name = "Humanoid"
  97. for _, h in pairs(char:GetChildren()) do
  98. if h.ClassName == "Accessory" then
  99. h.Handle.Transparency = 0
  100. end
  101. end
  102. wait(5)
  103. hi.Visible = true
  104. end
  105.  
  106. function remove()
  107. SP:Remove()
  108. hi.Visible = false
  109. end
  110.  
  111. hi.MouseButton1Click:connect(metal)
  112. char.Humanoid.Died:connect(remove)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement