Advertisement
subaru112g

none sense and old

Apr 29th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.65 KB | None | 0 0
  1. -- By Subaru112
  2. -- hi
  3. plr = game.Players.LocalPlayer
  4. char = plr.Character
  5.  
  6. wait (0.1)
  7. -- Defining RenderStepped?
  8. renders = game:GetService("RunService").RenderStepped
  9. --[ hats, mesh and tools ]--
  10. h = Instance.new("Hat")
  11. p = Instance.new("Part")
  12. h.Name = "Hat"
  13. p.Parent = h
  14. p.Position = char.Head.Position
  15. p.Name = "Handle"
  16. p.formFactor = 0
  17. p.Size = Vector3.new(1, 1, 2)
  18. p.BottomSurface = 0
  19. p.TopSurface = 0
  20. p.Locked = true
  21. m = Instance.new("SpecialMesh")
  22. m.Parent= p
  23. m.MeshType = "FileMesh"
  24. m.MeshId = "http://www.roblox.com/asset/?id=81642452"
  25. m.TextureId = "http://www.roblox.com/asset/?id=81643238"
  26. m.Scale = Vector3.new(1.15, 1.2, 1.1)
  27. h.Parent = char
  28. h.AttachmentPos = Vector3.new(0, 0.1, 0)
  29. h.AttachmentUp = Vector3.new(0, 1, 0)
  30. h.AttachmentRight = Vector3.new(1, 0, 0)
  31. h.AttachmentForward = Vector3.new(0, 0, -1)
  32. wait()
  33. wait(0)
  34. for i = 1,0 do
  35. game.Players.LocalPlayer.Character.Head.CanCollide = false
  36. game:GetService("RunService").Stepped:wait()
  37. end
  38. wait(0)
  39. char.Humanoid.WalkSpeed = 18
  40. char.Humanoid.JumpPower = 50
  41. char.Head.face.Texture = "http://www.roblox.com/asset/?id=288072938"
  42. -- Color
  43. local bdycolors = char["Body Colors"]
  44. bdycolors.HeadColor = BrickColor.new("Lily white")
  45. bdycolors.LeftArmColor = BrickColor.new("Lily white")
  46. bdycolors.RightArmColor = BrickColor.new("Lily white")
  47. bdycolors.LeftLegColor = BrickColor.new("Pearl")
  48. bdycolors.RightLegColor = BrickColor.new("Pearl")
  49. bdycolors.TorsoColor = BrickColor.new("Pearl")
  50.  
  51. --Hat Remove
  52. for _, child in pairs(char:GetChildren()) do
  53. if child.ClassName == 'Accessory' then
  54. child:Destroy()
  55. end
  56. end
  57. --Instance.new
  58. local Tool = Instance.new("Tool", game.Workspace)
  59. Tool.TextureId = "http://www.roblox.com/asset/?id=67710832"
  60. Tool.Name = "pan"
  61. local Handle = Instance.new("Part", Tool)
  62. Handle.Name = "Handle"
  63. Handle.Size = Vector3.new(1,1,2)
  64. local Mesh = Instance.new("SpecialMesh", Handle)
  65. Mesh.MeshType = "FileMesh"
  66. Mesh.MeshId = "http://www.roblox.com/asset/?id=24342877"
  67. Mesh.Scale = Vector3.new(2,2,2)
  68. Mesh.TextureId = "http://www.roblox.com/asset/?id=24342832"
  69. Tool.GripPos = Vector3.new(0.264, 0.092, -1.179)
  70. Tool.GripRight = Vector3.new(-0, 0.991, 0)
  71. Tool.Parent = plr.Backpack
  72. --Sound
  73. local DS = Instance.new("Sound", Handle)
  74. local OS = Instance.new("Sound", Handle) -- memes
  75. DS.SoundId = "rbxassetid://1591855827"
  76. OS.SoundId = "rbxassetid://1592934045"
  77. --i have a pan
  78. Tool.Equipped:connect(function()
  79. DS:Play()
  80. end)
  81.  
  82. Tool.Activated:connect(function()
  83. function onTouched(brick)
  84. local humn = brick.Parent:FindFirstChildOfClass("Humanoid")
  85. if humn then
  86. for i,v in pairs(humn.Parent:GetChildren()) do
  87. if v.ClassName == "Humanoid" then
  88. v:Destroy()
  89. OS:Play()
  90. end
  91. end
  92. end
  93. end
  94. char.pan.Handle.Touched:connect(onTouched)
  95. end)
  96. local torso = Instance.new("CharacterMesh", game.Workspace)
  97. torso.BodyPart = "Torso"
  98. torso.MeshId = "82987757"
  99. torso.Parent = char
  100.  
  101. local lleg = Instance.new("CharacterMesh", game.Workspace)
  102. lleg.BodyPart = "LeftLeg"
  103. lleg.MeshId = "746826007"
  104. lleg.Parent = char
  105.  
  106. local rleg = Instance.new("CharacterMesh", game.Workspace)
  107. rleg.BodyPart = "RightLeg"
  108. rleg.MeshId = "746825633"
  109. rleg.Parent = char
  110.  
  111. local larm = Instance.new("CharacterMesh", game.Workspace)
  112. larm.BodyPart = "LeftArm"
  113. larm.MeshId = "83001137"
  114. larm.Parent = char
  115.  
  116. local rarm = Instance.new("CharacterMesh", game.Workspace)
  117. rarm.BodyPart = "RightArm"
  118. rarm.MeshId = "83001181"
  119. rarm.Parent = char
  120.  
  121. shirt = char.Shirt
  122. shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=144076435"
  123. pants = char.Pants
  124. pants.PantsTemplate = "http://www.roblox.com/asset/?id=144076511"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement