Guest User

Sythical | Merge Simulator Script (Auto Merge)

a guest
Oct 13th, 2022
807
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. -- Variables
  2. local Player = game:GetService("Players").LocalPlayer
  3. local Blocks = game:GetService("Workspace").Plots[Player.Name].Blocks
  4.  
  5. -- Auto Merge
  6. while task.wait(0.1) do
  7. for _, Block in next, Blocks:GetChildren() do
  8. firetouchinterest(Block, Block, 0)
  9. firetouchinterest(Block, Block, 1)
  10. task.wait()
  11. end
  12. end
Add Comment
Please, Sign In to add comment