Advertisement
ROBLOXG4mer1234

soldier tf2

Sep 28th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. local char = game.Players.LocalPlayer.Character
  2. local mouse = game.Players.LocalPlayer:GetMouse()
  3. local face = char.Head:WaitForChild("face")
  4. face.Texture = "rbxassetid://19398553"
  5. for i,v in pairs(char:GetChildren()) do
  6. if v.className == "Shirt" then
  7. v:Remove()
  8. end
  9. end
  10. for i,v in pairs(char:GetChildren()) do
  11. if v.className == "Pants" then
  12. v:Remove()
  13. end
  14. end
  15. local shirt = Instance.new("Shirt", char)
  16. shirt.ShirtTemplate = "rbxassetid://105486246"
  17. local pants = Instance.new("Pants", char)
  18. pants.PantsTemplate = "rbxassetid://105486439"
  19. local helm = Instance.new("Part", char)
  20. helm.Size = Vector3.new(2,1,1)
  21. helm.BrickColor = BrickColor.new("Dark stone grey")
  22. local mesh = Instance.new("SpecialMesh", helm)
  23. mesh.Scale = Vector3.new(1,1.4,1)
  24. mesh.MeshId = "rbxassetid://1045381"
  25. local bweld = Instance.new("Weld", char.Torso)
  26. bweld.Part0 = char.Head
  27. bweld.Part1 = helm
  28. bweld.C1 = CFrame.new(0,-0.6,0)
  29. local music = Instance.new("Sound", char.Torso)
  30. music.SoundId = "rbxassetid://270102429"
  31. music.Volume = 1
  32. music.Looped = true
  33. mouse.KeyDown:connect(function(key)
  34. if key=="e" then
  35. music:Play()
  36. end
  37. end)
  38. mouse.KeyDown:connect(function(key)
  39. if key=="r" then
  40. music:Stop()
  41. end
  42. end)
  43.  
  44. while wait() do
  45. for i,v in pairs(char:GetChildren()) do
  46. if v.className == "Accessory" then
  47. v:Remove()
  48. end
  49. end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement