Advertisement
IHATEMICROWAVEOVEN

naros hot single si

May 21st, 2022
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. -- SETTINGS
  2. local size = Vector3.new(3,3,3)
  3. local color = BrickColor.new("White")
  4. local transparency = 0.5
  5. local lifetime = 7
  6. local material = "Neon"
  7. -- SCRIPT
  8. function Use(...)
  9. local args = {...}
  10. for i = 1, 10, 1 do
  11. local part = Instance.new("Part", workspace)
  12. part.CanCollide = false
  13. part.Size = size
  14. part.BrickColor = color
  15. part.Transparency = transparency
  16. part.TopSurface = "Smooth"
  17. part.BottomSurface = "Smooth"
  18. part.Material = material
  19. part.Shape = "Block"
  20. part.CFrame = args[1].Character.Torso.CFrame * CFrame.new(Vector3.new(0, 0, -7))
  21. local bv = Instance.new("BodyVelocity", part)
  22. bv.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  23. bv.velocity = args[3]
  24. local bg = Instance.new("BodyGyro", part)
  25. bg.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  26. bg.cframe = CFrame.fromEulerAnglesXYZ(0, 0, 0)
  27. local Stats = require(game:GetService("ServerScriptService"):WaitForChild("Stats"))
  28. local DamageMod = require(game.ServerScriptService.Libraries.DamageService)
  29. DamageMod:RegisterWeaponPart(args[1], {part}, 0, function(hit)
  30. if hit:IsA("Player") then
  31. print("kkkkk")
  32. if hit.Character:FindFirstChild("BaseSpeed") and hit.Character:FindFirstChild("Humanoid") and hit.Character:FindFirstChild("BaseStat") then
  33. hit.Character.BaseSpeed.Value = 70
  34. hit.Character.Humanoid.WalkSpeed = 1
  35. hit.Character.Humanoid.JumpPower = 50
  36. hit.Character.BaseSpeed:GetPropertyChangedSignal("Value"):Connect(function() hit.Character.BaseSpeed.Value = 70 end)
  37. end
  38. end
  39. end)
  40. game:GetService("Debris"):AddItem(part, lifetime)
  41. wait(0.01)
  42. end
  43. end
  44.  
  45. return Use
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement