2P1ooo1P2

HUZZ rng

May 27th, 2025
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.26 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local g = Instance.new("ScreenGui", p:WaitForChild("PlayerGui"))
  3. local f = Instance.new("Frame", g)
  4. f.Size = UDim2.new(0,250,0,180)
  5. f.Position = UDim2.new(0,20,0,100)
  6. f.BackgroundColor3 = Color3.fromRGB(25,25,25)
  7. f.Active = true f.Draggable = true
  8.  
  9. local txt = {
  10. ttl = "Modded by Scriptbox",
  11. warn = "⚠️ Use delay 0.500s or more to avoid ban.",
  12. start = "Start",
  13. stop = "Stop",
  14. speed = "Enter delay (e.g. 0.10)",
  15. on = "[ON] Auto Keep Rare",
  16. off = "[OFF] Auto Keep Rare"
  17. }
  18.  
  19. local t1 = Instance.new("TextLabel", f)
  20. t1.Size = UDim2.new(1,0,0,30)
  21. t1.Text = txt.ttl
  22. t1.BackgroundTransparency = 1
  23. t1.TextColor3 = Color3.new(1,1,1)
  24. t1.Font = Enum.Font.SourceSansBold
  25. t1.TextSize = 18
  26.  
  27. local w = Instance.new("TextLabel", f)
  28. w.Position = UDim2.new(0,0,0,30)
  29. w.Size = UDim2.new(1,0,0,50)
  30. w.Text = txt.warn
  31. w.TextWrapped = true
  32. w.BackgroundTransparency = 1
  33. w.TextColor3 = Color3.fromRGB(255,200,0)
  34. w.TextSize = 14
  35.  
  36. local b1 = Instance.new("TextButton", f)
  37. b1.Position = UDim2.new(0,10,0,90)
  38. b1.Size = UDim2.new(0,100,0,30)
  39. b1.Text = txt.start
  40. b1.BackgroundColor3 = Color3.fromRGB(0,170,0)
  41. b1.TextColor3 = Color3.new(1,1,1)
  42. b1.Font = Enum.Font.SourceSansBold
  43. b1.TextSize = 16
  44.  
  45. local b2 = Instance.new("TextButton", f)
  46. b2.Position = UDim2.new(0,130,0,90)
  47. b2.Size = UDim2.new(0,100,0,30)
  48. b2.Text = txt.stop
  49. b2.BackgroundColor3 = Color3.fromRGB(170,0,0)
  50. b2.TextColor3 = Color3.new(1,1,1)
  51. b2.Font = Enum.Font.SourceSansBold
  52. b2.TextSize = 16
  53.  
  54. local box = Instance.new("TextBox", f)
  55. box.Position = UDim2.new(0,10,0,130)
  56. box.Size = UDim2.new(0,220,0,25)
  57. box.PlaceholderText = txt.speed
  58. box.BackgroundColor3 = Color3.fromRGB(40,40,40)
  59. box.TextColor3 = Color3.new(1,1,1)
  60. box.Font = Enum.Font.SourceSans
  61. box.TextSize = 14
  62.  
  63. local kb = Instance.new("TextButton", f)
  64. kb.Position = UDim2.new(0,10,0,160)
  65. kb.Size = UDim2.new(0,220,0,20)
  66. kb.Text = txt.off
  67. kb.BackgroundColor3 = Color3.fromRGB(60,60,60)
  68. kb.TextColor3 = Color3.new(1,1,1)
  69. kb.Font = Enum.Font.SourceSans
  70. kb.TextSize = 14
  71.  
  72. local a = false
  73. _G.autoKeepEnabled = false
  74. local d = 0.10
  75. local sR = game:GetService("ReplicatedStorage"):FindFirstChild("L5_z%Q1!Rx_")
  76. local kR = game:GetService("ReplicatedStorage"):FindFirstChild("ConfirmAura")
  77. local rR = game:GetService("ReplicatedStorage"):FindFirstChild("G_93$$SDFjw_")
  78.  
  79. b1.MouseButton1Click:Connect(function()
  80. local v = tonumber(box.Text)
  81. if v and v >= 0.1 then d = v else d = 0.1 end
  82. a = true while a do sR:FireServer() wait(d) end
  83. end)
  84.  
  85. b2.MouseButton1Click:Connect(function() a = false end)
  86.  
  87. kb.MouseButton1Click:Connect(function()
  88. _G.autoKeepEnabled = not _G.autoKeepEnabled
  89. if _G.autoKeepEnabled then
  90. kb.Text = txt.on
  91. kb.BackgroundColor3 = Color3.fromRGB(0,100,0)
  92. else
  93. kb.Text = txt.off
  94. kb.BackgroundColor3 = Color3.fromRGB(60,60,60)
  95. end
  96. end)
  97.  
  98. local mt = getrawmetatable(game)
  99. setreadonly(mt, false)
  100. local old = mt.__namecall
  101. mt.__namecall = newcclosure(function(self, ...)
  102. local args = {...}
  103. if getnamecallmethod() == "FireServer" and self == rR and _G.autoKeepEnabled then
  104. local rate = tostring(args[2])
  105. local a,b = rate:match("(%d+)%s*/%s*(%d+)")
  106. if a and b and tonumber(a)/tonumber(b) then
  107. task.wait(0.3)
  108. kR:FireServer("keep")
  109. end
  110. end
  111. return old(self, ...)
  112. end)
Advertisement
Add Comment
Please, Sign In to add comment