xvc200

thechosenoneserverabuse

Apr 19th, 2025
1,469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.96 KB | None | 0 0
  1. --[[
  2. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  3. ]]
  4.  
  5. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  6.  
  7. local chat = game:GetService("TextChatService").TextChannels.RBXSystem
  8.  
  9. cmdsOnce = {";delcubes a", ";fog nan", ";delclones a", ";maptide nan", ";mapsize nan", ";seatide nan", ";seasize nan", ";colorless", ";myopic o"}
  10. cmds1 = {";reset me", ";clearinv o", ";freeze o", ";blind o", ";reset me", ";mute o", ";fat o", ";clone o", ";reset me"}
  11. cmds2 = {";reset me", ";clearinv o", ";freeze o", ";blind o", ";reset me", ";mute o", ";jail o", ";explode o inf", ";reset me"}
  12.  
  13. local ver = "1.3"
  14. local ison = false
  15. local del = 1
  16. local ls = false
  17. local al = nil
  18. local hyp = getgenv().hyperion
  19. local Window = Rayfield:CreateWindow({
  20. Name = "Server Abuser",
  21. Icon = 0,
  22. LoadingTitle = "version " .. ver,
  23. LoadingSubtitle = "skidded scripts",
  24. Theme = "Default",
  25. ConfigurationSaving = {
  26. Enabled = true,
  27. FileName = "ServerAbuserConfig"
  28. }
  29. })
  30.  
  31. local function noti(a, b, c)
  32. Rayfield:Notify({
  33. Title = a,
  34. Content = b,
  35. Duration = c
  36. })
  37. end
  38.  
  39. noti("WARN⚠️", "Enlighten is needed!", 5)
  40.  
  41. local Tab = Window:CreateTab("abuse", 4483362458)
  42. Tab:CreateToggle({
  43. Name = "abuse",
  44. CurrentValue = false,
  45. Callback = function(s)
  46. ison = s
  47. noti("toggled abuse", "toggled to " .. tostring(ison), 1.5)
  48.  
  49. if ison then
  50. for i = 1, #cmdsOnce do
  51. task.wait(0.15)
  52. chat:SendAsync(cmdsOnce[i])
  53. end
  54.  
  55. al = coroutine.create(function()
  56. while ison do
  57. local cmds = ls and cmds1 or cmds2
  58. for i = 1, #cmds do
  59. if not ison then break end
  60. task.wait(del)
  61. chat:SendAsync(cmds[i])
  62. end
  63. end
  64. end)
  65. coroutine.resume(al)
  66. end
  67. end
  68. })
  69.  
  70. Tab:CreateToggle({
  71. Name = "lag server (clone and fat)",
  72. CurrentValue = false,
  73. Callback = function(a)
  74. ls = a
  75. noti("Lag Server", "Toggled to " .. tostring(ls), 2)
  76. if ls then
  77. local cf = game:GetService("Workspace").Clones
  78. for _, clone in pairs(cf:GetChildren()) do
  79. if clone:IsA("Model") then
  80. clone:Destroy()
  81. end
  82. end
  83. end
  84. end
  85. })
  86.  
  87. Tab:CreateSlider({
  88. Name = "Delay",
  89. Range = {0.01, 1},
  90. Increment = 0.01,
  91. CurrentValue = 0.2,
  92. Callback = function(val)
  93. del = val
  94. noti("Delay set", "Current delay: " .. tostring(val), 1)
  95. end,
  96. })
  97.  
  98. if not hyp or hyp == nil then
  99. noti("this script will no longer be updated, use Hyperion. (by user_ in scriptblox.com)")
  100. elseif hyp then
  101. noti("use hyperion, closing script...")
  102. task.wait(3)
  103. Rayfield:Destroy()
  104. end
Advertisement
Add Comment
Please, Sign In to add comment