Advertisement
potatinha

FUS RO DAH (not working

Sep 28th, 2017
334
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. b = game.Players.LocalPlayer
  2.  
  3. p = game.Players.LocalPlayer
  4. ch = p.Character
  5.  
  6. h1 = Instance.new("Accessory", ch)
  7. hh = Instance.new("Part", h1)
  8. hh.Name = "Handle"
  9. mm = Instance.new("SpecialMesh", hh)
  10. mm.MeshId = "rbxassetid://1076171579"
  11. mm.TextureId = "rbxassetid://1076171180"
  12.  
  13. mm.Offset = Vector3.new(0, 0.13, 0)
  14.  
  15. h = ch:findFirstChildOfClass("Shirt")
  16. if h ~= nil then
  17. h:remove()
  18.  
  19. f = ch:findFirstChildOfClass("Pants")
  20. if f ~= nil then
  21. f:remove()
  22.  
  23. p = Instance.new("Shirt", ch)
  24. p.ShirtTemplate = "rbxassetid://610537821"
  25.  
  26. pp = Instance.new("Pants", ch)
  27. pp.PantsTemplate = "rbxassetid://789678565"
  28. end
  29. end
  30.  
  31. ch["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  32. ch["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  33. ch["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  34. ch["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  35. ch["Body Colors"].LeftLegColor = BrickColor.new("Pastel brown")
  36. ch["Body Colors"].RightLegColor = BrickColor.new("Pastel brown")
  37.  
  38. f = Instance.new("Tool", b.Backpack)
  39.  
  40. h = Instance.new("Part", f)
  41.  
  42. h.Name = "Handle"
  43. h.Transparency = 1
  44.  
  45. m = Instance.new("SpecialMesh", h)
  46.  
  47. s = Instance.new("Sound", ch.Head)
  48. s.Name = "NAME"
  49. s.SoundId = "rbxassetid://168892708"
  50. s.Volume = 10
  51. s.Pitch = 1
  52.  
  53.  
  54. f.Name = "FUSRODAH"
  55.  
  56. script.Name = "AnimationPlayerScript"
  57. script.Parent = f
  58.  
  59. -------------------------------------------------mah oe---------------------------------------------------
  60.  
  61. function FindAttachedHumanoid(part) --made my mincatx
  62. local tpart = part
  63. while tpart.Parent do
  64. if tpart.Parent:FindFirstChild('Humanoid') then return tpart.Parent.Humanoid end
  65. tpart = tpart.Parent
  66. end
  67. return nil --m1nc@tx
  68. end
  69.  
  70. function MakeValue(class,name,value,parent)
  71. local temp = Instance.new(class)
  72. temp.Name = name -- mincatx
  73. temp.Value = value
  74. temp.Parent = parent
  75. return temp
  76. end
  77.  
  78. local Tool = script.Parent
  79. local Handle = Tool:WaitForChild('Handle')
  80. local YellSound = ch.Head:WaitForChild('NAME')
  81. local AniScript = Tool:WaitForChild('AnimationPlayerScript')
  82. local ThrowAnimation = 'http://www.roblox.com/Asset?ID=111898867'
  83.  
  84. local ThrowFace = 'http://www.roblox.com/asset?id=145104475'
  85. -- mincatx
  86. local ThrowTable= Instance.new('Part')
  87. do
  88.  
  89. ThrowTable.FormFactor='Custom'
  90. ThrowTable.Transparency = 0.2 --mincatx
  91. ThrowTable.Size = Vector3.new(18, 18, 15)
  92. ThrowTable.CanCollide = true
  93. end
  94.  
  95. local LookGyro= Instance.new('BodyGyro')
  96. LookGyro.maxTorque = Vector3.new(0,math.huge,0)
  97.  
  98. local ActivateLock=false
  99.  
  100. Tool.Activated:connect(function()
  101. if ActivateLock then return end
  102. ActivateLock = true --m1ncatx
  103. local character = Tool.Parent
  104. local humanoid = character:WaitForChild('Humanoid')
  105. local torso = character:WaitForChild('Torso')
  106. local head = character:WaitForChild('Head')
  107. local face = head:FindFirstChild('face')
  108. local oldFace ='' --m1nc@tx
  109. if face then oldFace = face.Texture end
  110. LookGyro.cframe = torso.CFrame - torso.CFrame.p
  111. LookGyro.Parent = torso
  112.  
  113. local ntable = ThrowTable:Clone()
  114.  
  115. MakeValue('StringValue','aniId',ThrowAnimation,AniScript)
  116. wait(.5)
  117. ntable.Parent = Workspace
  118. ntable.CFrame = torso.CFrame+(torso.CFrame.lookVector*3)
  119. YellSound:play()
  120. wait(4.5)
  121.  
  122. wait(.5) -- mincatx
  123. if face then
  124. face.Texture=ThrowFace
  125. end
  126.  
  127.  
  128.  
  129. local bAVel = Instance.new('BodyAngularVelocity')
  130. bAVel.maxTorque = Vector3.new(math.huge,math.huge,math.huge)
  131. bAVel.angularvelocity = ((torso.CFrame*CFrame.Angles(0,math.pi/2,0)).lookVector*10)
  132. bAVel.Parent = ntable
  133.  
  134. local bVel = Instance.new('BodyVelocity')
  135. bVel.maxForce = Vector3.new(math.huge,0,math.huge)
  136. bVel.velocity = (torso.CFrame.lookVector*300)
  137. bVel.Parent = ntable
  138.  
  139. ntable.Touched:connect(function(part) -- minc@tx
  140.  
  141. Spawn(function()
  142. if part.Name == 'Terrain' then return end --m1inc@atx --mincatx
  143. if part.Anchored then return end
  144. local hitHumanoid = FindAttachedHumanoid(part)
  145. if hitHumanoid then
  146.  
  147. if hitHumanoid==humanoid then return end
  148. hitHumanoid.PlatformStand = true
  149. end -- m1nc@atx
  150. if part.Size.x*part.Size.y*part.Size.z<=5*9*5 then
  151. part.Velocity = (Vector3.new((math.random()-.5)*2,math.random(),(math.random()-.5)*2).unit)*5500
  152. end
  153. wait(3)
  154. print('got past wait')
  155. if hitHumanoid then --mincatx
  156. print('unplatformstanding')
  157. hitHumanoid.PlatformStand=false
  158. hitHumanoid.Jump = true
  159. end
  160. end)
  161. end)
  162. --m1ncatx
  163. wait(6)
  164. LookGyro.Parent = nil
  165. if face then
  166. face.Texture=oldFace -- m1nc@tx
  167. end
  168. ntable.CanCollide = false
  169. game.Debris:AddItem(ntable,5)
  170. ActivateLock = false
  171. end)
  172. function FindAttachedHumanoid(part)
  173. local tpart = part
  174. while tpart.Parent do
  175. if tpart.Parent:FindFirstChild('Humanoid') then return tpart.Parent.Humanoid end
  176. tpart = tpart.Parent
  177. end
  178. return nil
  179. end
  180.  
  181. script.ChildAdded:connect(function(nchild)
  182. local humanoid = FindAttachedHumanoid(script)
  183. local ani = Instance.new('Animation')
  184. ani.AnimationId = "rbxassetid://96621537"
  185. local aniTrack=humanoid:LoadAnimation(ani)
  186. wait(4.5) -- Wait for the FUS RO DAH -Jasondee1
  187. aniTrack:Play()
  188. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement