Advertisement
U_M9

peanut butter jelly time Script

Jun 21st, 2017
360
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.54 KB | None | 0 0
  1. --//Created By U_M9
  2. --//Do NOT Claim As Your Own
  3. --//Develop Team: OverAdversity : https://discord.gg/vKsPaAE
  4. local Plr = game.Players.LocalPlayer
  5. local Head = Plr.Character.Head
  6. local RootPart = Plr.Character.Torso
  7. local Humanoid = Plr.Character.Humanoid
  8.  
  9. local Cap = Instance.new("SpecialMesh",Head)
  10. Cap.MeshId = "rbxassetid://16190466"
  11. Cap.TextureId = "rbxassetid://54496780"
  12. Cap.Scale = Vector3.new(1,1,1)
  13. Cap.Offset = Vector3.new(0,1,-.3)
  14.  
  15. local Banana = Instance.new("SpecialMesh",RootPart)
  16. Banana.MeshId = "rbxassetid://28202371"
  17. Banana.TextureId = "rbxassetid://28202363"
  18. Banana.Scale = Vector3.new(5,5,5)
  19.  
  20. Head.face:Destroy()
  21.  
  22. local Sound = Instance.new("Sound",RootPart)
  23. Sound.SoundId = 'rbxassetid://145632191'
  24. Sound.Volume = 10
  25. Sound.Looped = true
  26. Sound:Play()
  27. for i,v in next, Plr.Character:GetChildren() do
  28.     if v:IsA("Part") and v.Name ~= RootPart.Name and v.Name ~= "Head" then
  29.         v.Transparency = 1
  30.     end
  31. end
  32.  
  33. for i,v in next, Plr.Character:GetChildren() do
  34.     if v:IsA('Accessory') then
  35.                 coroutine.resume(coroutine.create(function()
  36.                         v:WaitForChild'Handle'.Transparency = 1
  37.                 end))
  38.         end
  39. end
  40.  
  41.  RootPart.Touched:connect(function(hit)
  42.         local hum = hit.Parent:FindFirstChild("Humanoid")
  43.         if hum~=nil and hum.Parent~=Plr.Character then
  44.             hum.Health = 0
  45.         end
  46.     end)
  47.  
  48. pcall(function()
  49.     while true do
  50.         wait()
  51. Humanoid.WalkSpeed = 100
  52. Humanoid.Health = math.huge * math.huge
  53. Humanoid.MaxHealth = math.huge * math.huge
  54. end
  55. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement