local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local chat = game:GetService("TextChatService").TextChannels.RBXSystem cmdsOnce = {";delcubes a", ";fog nan", ";delclones a", ";maptide nan", ";mapsize nan", ";seatide nan", ";seasize nan", ";colorless", ";myopic o"} cmds1 = {";reset me", ";clearinv o", ";reset me", ";freeze o", ";reset me", ";blind o", ";reset me", ";mute o", ";reset me", ";fat o", ";reset me", ";clone o", ";reset me"} cmds2 = {";reset me", ";clearinv o", ";reset me", ";freeze o", ";reset me", ";blind o", ";reset me", ";mute o", ";reset me", ";jail o", ";reset me", ";explode o inf", ";reset me"} local ver = "1.1v" local ison = false local del = 1 local ls = false local abuseLoop = nil local Window = Rayfield:CreateWindow({ Name = "Server Abuser", Icon = 0, LoadingTitle = "version " .. ver, LoadingSubtitle = "skidded scripts", Theme = "Default", ConfigurationSaving = { Enabled = true, FileName = "ServerAbuserConfig" } }) local function noti(a, b, c) Rayfield:Notify({ Title = a, Content = b, Duration = c }) end noti("WARN⚠️", "Enlighten is needed!", 5) local Tab = Window:CreateTab("abuse", 4483362458) Tab:CreateButton({ Name = "toggle abuse", Callback = function() ison = not ison noti("toggled abuse", "toggled to " .. tostring(ison), 1.5) if ison then for i = 1, #cmdsOnce do task.wait(0.15) chat:SendAsync(cmdsOnce[i]) end abuseLoop = coroutine.create(function() while ison do local cmds = ls and cmds1 or cmds2 for i = 1, #cmds do if not ison then break end task.wait(del) chat:SendAsync(cmds[i]) end end end) coroutine.resume(abuseLoop) end end }) Tab:CreateButton({ Name = "Lag Server (clones)", Callback = function() ls = not ls noti("Lag Server", "Toggled to " .. tostring(ls), 2) if ls then local cf = game:GetService("Workspace").Clones for _, clone in pairs(cf:GetChildren()) do if clone:IsA("Model") then clone:Destroy() end end end end }) Tab:CreateSlider({ Name = "Delay", Range = {0.1, 1}, Increment = 0.1, CurrentValue = 0.2, Flag = "Slider1", Callback = function(val) del = val noti("Delay set", "Current delay: " .. tostring(val), 1) end, }) Rayfield:LoadConfiguration()