Advertisement
GuestNoobROBLOX

Gotta SWEEP (UPDATED) Roblox Script

Jun 9th, 2018
953
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 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("GOTTA SWEEP BY NanesROBLOX")
  8.  
  9. char.Humanoid.JumpPower = 0
  10. char.Humanoid.Animator:Destroy()
  11. char.Animate:Destroy()
  12. char.Head.face.Transparency = 1
  13. local sweep = Instance.new("Part")
  14. local slap = Instance.new("Sound",char)
  15. slap.SoundId = "rbxassetid://"
  16. slap.Volume = 10
  17. local congrats = Instance.new("Sound",char)
  18. congrats.SoundId = ""
  19. congrats.Volume = 10
  20. local death = Instance.new("Sound",char)
  21. death.SoundId = "rbxassetid://1781430032"
  22. death.Volume = 10
  23. local SweepingTime = Instance.new("Sound",char)
  24. SweepingTime.SoundId = "rbxassetid://1837757450"
  25. SweepingTime.Volume = 10
  26. local GottaSweep = Instance.new("Sound",char)
  27. GottaSweep.SoundId = "rbxassetid://1781430032"
  28. GottaSweep.Volume = 10
  29. local sweepdecal1 = Instance.new("Decal",sweep)
  30. local sweepdecal2 = Instance.new("Decal",sweep)
  31. local weld = Instance.new("Weld",sweep)
  32. sweepdecal1.Face = "Back"
  33. sweepdecal1.Texture = "rbxassetid://1806990036"
  34. sweepdecal2.Face = "Front"
  35. sweepdecal2.Texture = "rbxassetid://1806990036"
  36. sweep.Name = "gotta sweep sweep sweep"
  37. sweep.Size = Vector3.new(6.2, 6.4, 0.114)
  38. sweep.Transparency = 1
  39. sweep.CanCollide = false
  40. weld.Part0 = char.Torso
  41. weld.Part1 = sweep
  42. weld.C0 = CFrame.new(-0.466694832, 1.18746996, -0.594377518, -0.999195099, 0, 0.0401160046, 0, 1, 0, -0.0401160046, 0, -0.999195099)
  43. sweep.Parent = char
  44. local vel = Instance.new("BodyVelocity",sweep)
  45. vel.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  46. vel.Velocity = Vector3.new(0,0,0)
  47. for i,v in pairs(char:GetChildren()) do
  48. if v.ClassName == "Part" then
  49. v.Transparency = 1
  50.  
  51. elseif v.ClassName == "Accessory" then
  52. v.Handle.Transparency = 1
  53. end
  54. end
  55. mouse = plr:GetMouse()
  56. SpeedofBaldi = 400
  57. using = false
  58. char.Torso.Touched:connect(function(part)
  59. local human = part.Parent:FindFirstChildOfClass("Humanoid")
  60. if human and using then
  61. end
  62. end)
  63. function Taunt()
  64. local rd = math.random(1,3)
  65. if rd == 1 then
  66. SweepingTime:Play()
  67. end
  68. if rd == 2 then
  69. GottaSweep:Play()
  70. end
  71. end
  72. function Teleport()
  73. char.Torso.CFrame = mouse.Hit + Vector3.new(0,3,0)
  74. slap:Play()
  75. using = true
  76. sweepdecal1.Texture = "http://www.roblox.com/asset/?id=1806990036"
  77. sweepdecal2.Texture = "http://www.roblox.com/asset/?id=1806990036"
  78. wait(0.4)
  79. using = false
  80. sweepdecal1.Face = "Back"
  81. sweepdecal1.Texture = "rbxassetid://1806990036"
  82. sweepdecal2.Face = "Front"
  83. sweepdecal2.Texture = "rbxassetid://1806990036"
  84. end
  85. mouse.KeyDown:connect(function(k)
  86. if k == "v" then
  87. Taunt()
  88. end
  89. if k == "f" then
  90. Teleport()
  91. end
  92. end)
  93.  
  94. function move()
  95. vel.Velocity = char.Torso.CFrame.lookVector * SpeedofBaldi
  96. sweepdecal1.Texture = "http://www.roblox.com/asset/?id=1806990036"
  97. sweepdecal2.Texture = "http://www.roblox.com/asset/?id=1806990036"
  98. using = true
  99. slap:Play()
  100. wait(0.4)
  101. using = false
  102. vel.Velocity = Vector3.new(0,0,0)
  103. sweepdecal1.Face = "Back"
  104. sweepdecal1.Texture = "rbxassetid://1806990036"
  105. sweepdecal2.Face = "Front"
  106. sweepdecal2.Texture = "rbxassetid://1806990036"
  107. end
  108. mouse.Button1Down:connect(function()
  109. move()
  110. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement