Advertisement
scriptshocaser

Untitled

Jun 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.34 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. repeat wait() until plr.Character
  3. char = plr.Character
  4.  
  5. wait(1/60)
  6.  
  7. print("Principal edit by S.I Corp -> 'We provide ALL of your needs.' ")
  8. print("Original Baldi V2 script created by Theamazingnater")
  9.  
  10. char.Humanoid.JumpPower = 0
  11. char.Humanoid.Animator:Destroy()
  12. char.Animate:Destroy()
  13. char.Head.face.Transparency = 1
  14. local sweep = Instance.new("Part")
  15. local slap = Instance.new("Sound",char)
  16. slap.SoundId = "rbxassetid://1923953264"
  17. slap.Volume = 10
  18. local congrats = Instance.new("Sound",char)
  19. congrats.SoundId = "rbxassetid://1846448410"
  20. congrats.Volume = 10
  21. local death = Instance.new("Sound",char)
  22. death.SoundId = "rbxassetid://1923724369"
  23. death.Volume = 10
  24. local schoolhouse = Instance.new("Sound",char)
  25. schoolhouse.SoundId = "rbxassetid://1865627207"
  26. schoolhouse.Volume = 10
  27. local doors = Instance.new("Sound",char)
  28. doors.SoundId = "rbxassetid://1846426159"
  29. doors.Volume = 10
  30. local sweepdecal1 = Instance.new("Decal",sweep)
  31. local sweepdecal2 = Instance.new("Decal",sweep)
  32. local weld = Instance.new("Weld",sweep)
  33. sweepdecal1.Face = "Back"
  34. sweepdecal1.Texture = "rbxassetid://1872929065"
  35. sweepdecal2.Face = "Front"
  36. sweepdecal2.Texture = "rbxassetid://1872929065"
  37. sweep.Name = "gotta sweep sweep sweep"
  38. sweep.Size = Vector3.new(4.2, 8.4, 0.114)
  39. sweep.Transparency = 1
  40. sweep.CanCollide = false
  41. weld.Part0 = char.Torso
  42. weld.Part1 = sweep
  43. weld.C0 = CFrame.new(-0.466694832, 1.18746996, -0.594377518, -0.999195099, 0, 0.0401160046, 0, 1, 0, -0.0401160046, 0, -0.999195099)
  44. sweep.Parent = char
  45. local vel = Instance.new("BodyVelocity",sweep)
  46. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  47. vel.Velocity = Vector3.new(0,0,0)
  48. for i,v in pairs(char:GetChildren()) do
  49. if v.ClassName == "Part" then
  50. v.Transparency = 1
  51.  
  52. elseif v.ClassName == "Accessory" then
  53. v.Handle.Transparency = 1
  54. end
  55. end
  56. mouse = plr:GetMouse()
  57. SpeedofBaldi = 80
  58. using = false
  59. char.Torso.Touched:connect(function(part)
  60. local human = part.Parent:FindFirstChildOfClass("Humanoid")
  61. if human and using then
  62. human.Health = 0
  63. death:Play()
  64. end
  65. end)
  66. function Taunt()
  67. local rd = math.random(1,3)
  68. if rd == 1 then
  69. congrats:Play()
  70. end
  71. if rd == 2 then
  72. schoolhouse:Play()
  73. end
  74. if rd == 3 then
  75. doors:Play()
  76. end
  77. end
  78. function Teleport()
  79. char.Torso.CFrame = mouse.Hit + Vector3.new(0,3,0)
  80. slap:Play()
  81. using = true
  82. sweepdecal1.Texture = "http://www.roblox.com/asset/?id=1923831055"
  83. sweepdecal2.Texture = "http://www.roblox.com/asset/?id=1923831055"
  84. wait(0.4)
  85. using = false
  86. sweepdecal1.Face = "Back"
  87. sweepdecal1.Texture = "rbxassetid://1872929065"
  88. sweepdecal2.Face = "Front"
  89. sweepdecal2.Texture = "rbxassetid://1872929065"
  90. end
  91. mouse.KeyDown:connect(function(k)
  92. if k == "v" then
  93. Taunt()
  94. end
  95. if k == "f" then
  96. Teleport()
  97. end
  98. end)
  99.  
  100. function move()
  101. vel.Velocity = char.Torso.CFrame.lookVector * SpeedofBaldi
  102. sweepdecal1.Texture = "http://www.roblox.com/asset/?id=1923831055"
  103. sweepdecal2.Texture = "http://www.roblox.com/asset/?id=1923831055"
  104. using = true
  105. slap:Play()
  106. wait(0.4)
  107. using = false
  108. vel.Velocity = Vector3.new(0,0,0)
  109. sweepdecal1.Face = "Back"
  110. sweepdecal1.Texture = "rbxassetid://1923831055"
  111. sweepdecal2.Face = "Front"
  112. sweepdecal2.Texture = "rbxassetid://1923831055"
  113. end
  114. mouse.Button1Down:connect(function()
  115. move()
  116. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement