Advertisement
AjareliVajkaci

ROBLOX LUCKY BLOCKS SCRIPT GET EVERY TOOL POSSIBLE ON LOOP BY G10

Jan 11th, 2025 (edited)
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.94 KB | Gaming | 0 0
  1. --no gui, no notification, no obfusocate, just straight up thing you were looking for
  2.  
  3. local replicatedStorage = game:GetService("ReplicatedStorage")
  4.  
  5. local blockNames = {
  6.     "SpawnLuckyBlock",
  7.     "SpawnSuperBlock",
  8.     "SpawnDiamondBlock",
  9.     "SpawnRainbowBlock",
  10.     "SpawnHackerBlock",
  11.     "SpawnGalaxyBlock",
  12.     "SpawnVoidBlock"
  13. }
  14.  
  15. while true do
  16.     for _, blockName in ipairs(blockNames) do
  17.         local blockEvent = replicatedStorage:FindFirstChild(blockName)
  18.         if blockEvent and (blockEvent:IsA("RemoteEvent") or blockEvent:IsA("RemoteFunction")) then
  19.             pcall(function()
  20.                 if blockEvent:IsA("RemoteEvent") then
  21.                     blockEvent:FireServer()
  22.                 elseif blockEvent:IsA("RemoteFunction") then
  23.                     blockEvent:InvokeServer()
  24.                 end
  25.             end)
  26.         end
  27.     end
  28.     wait(0.0001) -- speed of tools appearing, lower if ur lagging :)
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement