Advertisement
Guest User

spongebob script

a guest
Mar 20th, 2020
1,548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. --Noob script by Contentnul
  2. wait(1)
  3. Player = game:GetService("Players").LocalPlayer
  4. Character = Player.Character
  5. Player.Character.Head.face.Texture = "rbxassetid://106356444"
  6. Player.Character["Head"].BrickColor = BrickColor.new("New Yeller")
  7. Player.Character.Torso.BrickColor = BrickColor.new("New Yeller")
  8. Player.Character["Left Arm"].BrickColor = BrickColor.new("New Yeller")
  9. Player.Character["Right Arm"].BrickColor = BrickColor.new("New Yeller")
  10. Player.Character["Left Leg"].BrickColor = BrickColor.new("New Yeller")
  11. Player.Character["Right Leg"].BrickColor = BrickColor.new("New Yeller")
  12. sound = Instance.new("Sound")
  13. sound.SoundId = "rbxassetid://840189092"
  14. sound.Looped = true
  15. sound.Parent = game.Workspace
  16. sound:Play()
  17. tool = Instance.new("Tool")
  18. tool.Name = "Bubble Wand"
  19. tool.Parent = Player.Backpack
  20. handle = Instance.new("Part")
  21. handle.Name = "Handle"
  22. handle.Parent = tool
  23. mesh = Instance.new("SpecialMesh")
  24. mesh.MeshId = "rbxassetid://436470497"
  25. mesh.TextureId = "rbxassetid://12724773"
  26. mesh.Parent = handle
  27. animation = Instance.new("Animation")
  28. animation.AnimationId = "rbxassetid://89134792"
  29. animation.Parent = tool
  30. tool.Activated:connect(function()
  31. local animtrack = Player.Character.Humanoid:LoadAnimation(animation)
  32. animtrack:Play()
  33. handle.Touched:connect(function(hit)
  34. if hit.Parent:FindFirstChild("Humanoid") then
  35. hit.Parent.Humanoid:TakeDamage(5)
  36. end
  37. end)
  38. end)
  39. --Hat Remove
  40. for _, child in pairs(char:GetChildren()) do
  41. if child.ClassName == 'Accessory' then
  42. child:Destroy()
  43. end
  44. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement