Advertisement
GuestNoobROBLOX

Old Baldi Roblox Script (CREDITS TO ORIGINAL)

Jun 28th, 2018
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.63 KB | None | 0 0
  1. -- credits to the creator of the original script
  2. plr = game.Players.LocalPlayer
  3. char = plr.Character
  4.  
  5. wait(1)
  6. local slap = Instance.new("Sound",char)
  7. slap.SoundId = "rbxassetid://511340819"
  8. slap.Volume = 10
  9. slap.PlaybackSpeed = 1.7
  10. local jumpscare = Instance.new("Sound", char)
  11. jumpscare.SoundId = "rbxassetid://223103466"
  12. jumpscare.Volume = 0.1
  13. jumpscare.PlaybackSpeed = 2
  14. for i,v in pairs(char:GetChildren()) do
  15. if v.ClassName == "Part" then
  16. v.Transparency = 1
  17. end
  18. end
  19. for i,v in pairs(char:GetChildren()) do
  20. if v.ClassName == "Accessory" then
  21. v.Handle.Transparency = 1
  22. end
  23. end
  24. char.Head.face.Transparency = 1
  25. local sweep = Instance.new("Part")
  26. local sweepdecal1 = Instance.new("Decal",sweep)
  27. local sweepdecal2 = Instance.new("Decal",sweep)
  28. local light = Instance.new("PointLight",sweep)
  29. local weld = Instance.new("Weld",sweep)
  30. sweepdecal1.Face = "Back"
  31. sweepdecal1.Texture = "rbxassetid://2013490034"
  32. sweepdecal2.Face = "Front"
  33. sweepdecal2.Texture = "rbxassetid://2013490034"
  34. sweep.Name = "gotta sweep sweep sweep"
  35. sweep.Size = Vector3.new(4.2, 8.4, 0.114)
  36. sweep.Transparency = 1
  37. sweep.CanCollide = false
  38. weld.Part0 = char.Torso
  39. weld.Part1 = sweep
  40. weld.C0 = CFrame.new(-0.466694832, 1.18746996, -0.594377518, -0.999195099, 0, 0.0401160046, 0, 1, 0, -0.0401160046, 0, -0.999195099)
  41. sweep.Parent = char
  42. char.Humanoid.HipHeight = 0.3
  43. slapspeed = 2
  44. walkSpeed = 20.3
  45. maxhealth = 1000000000000000000000000000000000000000000000000000000000000000000000000000000
  46. health = 1000000000000000000000000000000000000000000000000000000000000000000000000000000
  47. char.Humanoid.WalkSpeed = 30.5
  48. char.Humanoid.MaxHealth = 100000000000000000000000000000000000000000000000000000000000000000
  49. char.Humanoid.Health = 100000000000000000000000000000000000000000000000000000000000000000
  50. anger = 1 -- 1 is normal.
  51. coroutine.wrap(function()
  52. while true do
  53. wait()
  54. if anger == 1 then
  55. slapspeed = 2 -- Normal speed.
  56. end
  57. if anger == 2 then
  58. slapspeed = 1
  59. end
  60. if anger == 3 then
  61. slapspeed = 0.5
  62. end
  63. if anger == 4 then
  64. slapspeed = 0.1
  65. end
  66. end
  67. end)()
  68. sweep.Touched:connect(function(part)
  69. local human = part.Parent:FindFirstChildOfClass("Humanoid")
  70. if human and human.Parent.Name ~= char.Name then
  71. human.Health = 0
  72. jumpscare:Play()
  73. end
  74. end)
  75. while true do
  76. wait(slapspeed)
  77. sweepdecal1.Texture = "http://www.roblox.com/asset/?id=2013456006"
  78. sweepdecal2.Texture = "http://www.roblox.com/asset/?id=2013456006"
  79. slap:Play()
  80. wait(0.4)
  81. sweepdecal1.Face = "Back"
  82. sweepdecal1.Texture = "rbxassetid://2013490034"
  83. sweepdecal2.Face = "Front"
  84. sweepdecal2.Texture = "rbxassetid://2013490034"
  85. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement