Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))()
- local Window = OrionLib:MakeWindow({
- Name = "Anime Shadow Script Hub",
- HidePremium = false,
- SaveConfig = true,
- ConfigFolder = "OrionConfigs"
- })
- local MainTab = Window:MakeTab({
- Name = "Main",
- Icon = "rbxassetid://4483345998",
- PremiumOnly = false
- })
- -- Système pour spammer l'autoclicker lorsque la case est cochée
- local autoClicker = false
- local function autoClickerFunc()
- while autoClicker do
- local args = {
- [1] = "Enemies",
- [2] = "World",
- [3] = "Click"
- }
- game:GetService("ReplicatedStorage").Remotes.Bridge:FireServer(unpack(args))
- wait(0.05) -- Intervalle entre chaque click
- end
- end
- MainTab:AddToggle({
- Name = "Auto Clicker",
- Default = false,
- Callback = function(value)
- autoClicker = value
- if autoClicker then
- spawn(autoClickerFunc)
- end
- end
- })
- print("Script pour Anime Shadow initialisé avec OrionLib UI")
Advertisement
Add Comment
Please, Sign In to add comment