Yingyang005

Anime shadow

Nov 13th, 2024
428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))()
  2.  
  3. local Window = OrionLib:MakeWindow({
  4. Name = "Anime Shadow Script Hub",
  5. HidePremium = false,
  6. SaveConfig = true,
  7. ConfigFolder = "OrionConfigs"
  8. })
  9.  
  10. local MainTab = Window:MakeTab({
  11. Name = "Main",
  12. Icon = "rbxassetid://4483345998",
  13. PremiumOnly = false
  14. })
  15.  
  16. -- Système pour spammer l'autoclicker lorsque la case est cochée
  17. local autoClicker = false
  18.  
  19. local function autoClickerFunc()
  20. while autoClicker do
  21. local args = {
  22. [1] = "Enemies",
  23. [2] = "World",
  24. [3] = "Click"
  25. }
  26.  
  27. game:GetService("ReplicatedStorage").Remotes.Bridge:FireServer(unpack(args))
  28. wait(0.05) -- Intervalle entre chaque click
  29. end
  30. end
  31.  
  32. MainTab:AddToggle({
  33. Name = "Auto Clicker",
  34. Default = false,
  35. Callback = function(value)
  36. autoClicker = value
  37. if autoClicker then
  38. spawn(autoClickerFunc)
  39. end
  40. end
  41. })
  42.  
  43. print("Script pour Anime Shadow initialisé avec OrionLib UI")
  44.  
Advertisement
Add Comment
Please, Sign In to add comment