Advertisement
Jiren_0013

AFS - Custom mobs

Jun 16th, 2021
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. -- Made by Jiren
  2. -- Anime Fighters Simulator Custom Mobs
  3. getgenv().Kyaaa = true -- on/off lol
  4. function OniiChan()
  5. pcall(function()
  6. for Hurt,Onii in pairs(game.Workspace.Worlds:GetDescendants()) do
  7. if Onii:FindFirstChild("HumanoidRootPart") then
  8. Onii.Head.face.Texture = "rbxassetid://5070337028"
  9. if Onii:FindFirstChild("Clothing") and Onii.Clothing.ShirtTemplate then
  10. Onii.Clothing.Name = "Shirt"
  11. end
  12. if Onii:FindFirstChild("Clothing") and Onii.Clothing.PantsTemplate then
  13. Onii.Clothing.Name = "Pants"
  14. end
  15. if Onii:FindFirstChild("Shirt") and Onii:FindFirstChild("Pants") then
  16. Onii.Shirt.ShirtTemplate = "rbxassetid://5328967798"
  17. Onii.Pants.PantsTemplate = "rbxassetid://69"
  18. end
  19. Onii.HumanoidRootPart.EnemyInfo.Health.EnemyName.Text = "Onii Chan"
  20. end
  21. end
  22. end)
  23. end
  24. function ItaiItai(f)
  25. coroutine.wrap(f)()
  26. end
  27. ItaiItai(function()
  28. while getgenv().Kyaaa do wait()
  29. OniiChan()
  30. end
  31. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement