--t.me/Soul_Scr1pt local ReplicatedStorage = game:GetService("ReplicatedStorage") local Networker = ReplicatedStorage:WaitForChild("Packages"):WaitForChild("_Index"):WaitForChild("leifstout_networker@0.3.0"):WaitForChild("networker"):WaitForChild("_remotes") local BattleServiceRF = Networker:WaitForChild("BattleService"):WaitForChild("RemoteFunction") local BattleServiceRE = Networker:WaitForChild("BattleService"):WaitForChild("RemoteEvent") local TutorialService = Networker:WaitForChild("TutorialService"):WaitForChild("RemoteEvent") while true do BattleServiceRF:InvokeServer("requestBattle") TutorialService:FireServer("changeStep", "battlePressedGadget", "tapToStartGadget") TutorialService:FireServer("changeStep", "tapToStartGadget", "battleWonGadget") BattleServiceRE:FireServer("claimResults") TutorialService:FireServer("changeStep", "battleWonGadget", "levelUp") TutorialService:FireServer("changeStep", "levelUp", "openedLevelUpLoot") TutorialService:FireServer("changeStep", "openedLevelUpLoot", "startUpgradeBuilding") wait(0.1) end