Advertisement
IHATEMICROWAVEOVEN

dope

Sep 26th, 2021
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. coroutine.wrap(function()
  2. if not Special then
  3. if script:FindFirstChild("Special") then
  4. if require(script.Special)(Model, Phase) then
  5. Special = true
  6. else
  7. canuse = true
  8. end
  9. else
  10. canuse = true
  11. end
  12. else
  13. canuse = true
  14. end
  15. if canuse then
  16. for _, i in pairs(game.Players:GetPlayers()) do
  17. if (i.Character.Torso.Position - startposition).magnitude <= 300 then
  18. local rskill = math.random(1, #script.Skills:GetChildren())
  19. require(script.Skills:GetChildren()[rskill])(Model, Phase)
  20. if Model.SLP and Model.BTorso.Standing and Model.BTorso.Stunned and Model.BTorso.Cackling then
  21. if Model.SLP > 0 then
  22. for _, i in pairs(Model.BTorso.Standing) do
  23. i.Transparency = 1
  24. end
  25. for _, i in pairs (Model.BTorso.Stunned) do
  26. i.Transparency = 0
  27. end
  28. wait(math.random(3,5))
  29. for _, i in pairs(Model.BTorso.Cackling) do
  30. i.Transparency = 0
  31. end
  32. for _, i in pairs (Model.BTorso.Stunned) do
  33. i.Transparency = 1
  34. end
  35. wait(1)
  36. for _, i in pairs(Model.BTorso.Standing) do
  37. i.Transparency = 0
  38. end
  39. for _, i in pairs (Model.BTorso.Cackling) do
  40. i.Transparency = 1
  41. end
  42. end
  43. end
  44. end
  45. end
  46. end
  47. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement