idkllal

Untitled

Mar 16th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. Player = game.Players.LocalPlayer
  2.  
  3. for i,v in pairs (Player.Character:GetChildren()) do
  4. if v:IsA("Accessory") then
  5. v:Destroy()
  6. end
  7. end
  8.  
  9. o1 = Instance.new("Part")
  10. o1.Name = "thing"
  11. o1.Anchored = true
  12. o1.FormFactor = Enum.FormFactor.Custom
  13. o1.Size = Vector3.new(2, 0.4, 1)
  14. o1.BottomSurface = Enum.SurfaceType.Smooth
  15. o1.TopSurface = Enum.SurfaceType.Smooth
  16. o2 = Instance.new("SpecialMesh")
  17. o2.Parent = o1
  18. o2.MeshId = "http://www.roblox.com/asset/?id=12305010"
  19. o2.Scale = Vector3.new(1,1,1)
  20. o2.Offset = Vector3.new(0,-.55,0)
  21. o2.TextureId = "http://www.roblox.com/asset/?id=21729264"
  22. o2.MeshType = Enum.MeshType.FileMesh
  23. h = Instance.new("Hat")
  24. p = Instance.new("Part")
  25. h.Name = "SWAT Helm"
  26. p.Parent = h
  27. p.Position = game.Players.LocalPlayer.Character:findFirstChild("Head").Position
  28. p.Name = "Handle"
  29. p.formFactor = 0
  30. p.Size = Vector3.new(0,-0.25,0)
  31. p.BottomSurface = 0
  32. p.TopSurface = 0
  33. p.Locked = true
  34. o1.Mesh:clone().Parent = p
  35. h.Parent = Player.Character
  36. h.AttachmentPos = Vector3.new(0,-.15,-0)
  37. Player.Character.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=17788953"
  38. Player.Character.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=17788960"
  39. Player.Character.Humanoid.MaxHealth = 300
  40. Player.Character.Humanoid.Health = 300
Add Comment
Please, Sign In to add comment