Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --no gui, no notification, no obfusocate, just straight up thing you were looking for
- local replicatedStorage = game:GetService("ReplicatedStorage")
- local blockNames = {
- "SpawnLuckyBlock",
- "SpawnSuperBlock",
- "SpawnDiamondBlock",
- "SpawnRainbowBlock",
- "SpawnHackerBlock",
- "SpawnGalaxyBlock",
- "SpawnVoidBlock"
- }
- while true do
- for _, blockName in ipairs(blockNames) do
- local blockEvent = replicatedStorage:FindFirstChild(blockName)
- if blockEvent and (blockEvent:IsA("RemoteEvent") or blockEvent:IsA("RemoteFunction")) then
- pcall(function()
- if blockEvent:IsA("RemoteEvent") then
- blockEvent:FireServer()
- elseif blockEvent:IsA("RemoteFunction") then
- blockEvent:InvokeServer()
- end
- end)
- end
- end
- wait(0.0001) -- speed of tools appearing, lower if ur lagging :)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement