local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))() local window = library:Window("🖐️ Steal a Slap!") local running = false window:Toggle("get INF (5Qt Stop)", false, function(state) running = state if state then task.spawn(function() local ReplicatedStorage = game:GetService("ReplicatedStorage") local SpinPrizeEvent = ReplicatedStorage.Remotes.SpinPrizeEvent while running do pcall(function() SpinPrizeEvent:FireServer(8) end) task.wait(0.1) end end) end end) window:Button("Join Discord", function() local InviteCode = "PqSzMbTC" local request = request or http_request or http and http.request or syn and syn.request local HttpService = game:GetService("HttpService") if request then pcall(function() request({ Url = "http://127.0.0.1:6463/rpc?v=1", Method = "POST", Headers = { ["Content-Type"] = "application/json", ["Origin"] = "https://discord.com" }, Body = HttpService:JSONEncode({ cmd = "INVITE_BROWSER", args = { code = InviteCode }, nonce = HttpService:GenerateGUID(false) }) }) end) else setclipboard("https://discord.gg/" .. InviteCode) end end) window:Label("made by ecrxks27")