Advertisement
good_scripter

Untitled

Jun 17th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. plr = game.Players.julio_7779
  2. -- SWEEP SWEEP SWEEP by Theamazingnater
  3. repeat wait() until plr.Character
  4. char= plr.Character
  5.  
  6. for i,v in pairs(char:GetChildren()) do
  7. if v.ClassName == "Part" then
  8. v.Transparency = 1
  9. end
  10. end
  11. for i,v in pairs(char:GetChildren()) do
  12. if v.ClassName == "Accessory" then
  13. v.Handle.Transparency = 1
  14. end
  15. end
  16. char.Head.face.Transparency = 1
  17.  
  18.  
  19. -- Customization
  20. local sweep = Instance.new("Part")
  21. local sweepdecal1 = Instance.new("Decal",sweep)
  22. local sweepdecal2 = Instance.new("Decal",sweep)
  23. local weld = Instance.new("Weld",sweep)
  24. sweepdecal1.Face = "Back"
  25. sweepdecal1.Texture = "http://www.roblox.com/asset/?id=1828477921"
  26. sweepdecal2.Face = "Front"
  27. sweepdecal2.Texture = "http://www.roblox.com/asset/?id=1828477921"
  28. sweep.Name = "gotta sweep sweep sweep"
  29. sweep.Size = Vector3.new(7.69, 8.84, 0.05)
  30. sweep.Transparency = 1
  31. sweep.CanCollide = false
  32. weld.Part0 = char.Torso
  33. weld.Part1 = sweep
  34. weld.C0 = CFrame.new(-0.466694832, 1.18746996, -0.594377518, -0.999195099, 0, 0.0401160046, 0, 1, 0, -0.0401160046, 0, -0.999195099)
  35. sweep.Parent = char
  36. char.Humanoid.HipHeight = 0.3
  37. gottasweep = Instance.new("Sound",char)
  38. gottasweep.SoundId = "rbxassetid://1781430032"
  39. gottasweep.Volume = 4
  40. lookslikeitssweepingtime = Instance.new("Sound",char)
  41. lookslikeitssweepingtime.SoundId = "rbxassetid://1837757450"
  42. lookslikeitssweepingtime.Volume = 4
  43. lookslikeitssweepingtime.TimePosition = 1
  44. using = false
  45. char.Humanoid.WalkSpeed = 300
  46. function taunt(key)
  47. if key == "e" and not using then
  48. using = true
  49. lookslikeitssweepingtime:Play()
  50. repeat wait() until lookslikeitssweepingtime.IsPlaying == false
  51. gottasweep:Play()
  52. using = false
  53. end
  54. end
  55. mouse.KeyDown:connect(taunt)
  56. sweep.Touched:connect(function(part)
  57. local human = part.Parent:FindFirstChildOfClass("Humanoid")
  58. if human and human.Parent.Name ~= char.Name then
  59. if human.Parent.HumanoidRootPart.Anchored then
  60. human.Parent.HumanoidRootPart.Anchored = false
  61. end
  62. local vel = Instance.new("BodyVelocity",human.Parent.Torso)
  63. vel.Velocity = sweep.CFrame.lookVector * 5000
  64. repeat wait() until sweep.TouchEnded
  65. vel:Destroy()
  66. end
  67. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement