EmeraldSlash

Epic Speed Hack (insert into workspace) [ROBLOX]

Nov 15th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | None | 0 0
  1. -- free speed hack!!
  2.  
  3. function gen(part)
  4.     for i = 1,10 do
  5.         local f = Instance.new("Fire")
  6.         f.Parent = part
  7.     end
  8. end
  9.  
  10. for _,v in pairs (game.Workspace:GetChildren()) do
  11.     if v:IsA("BasePart") then
  12.         gen(v)
  13.     elseif v:IsA("Model") then
  14.         for _,p in pairs(v:GetChildren()) do
  15.             gen(p)
  16.         end
  17.     end
  18. end
Add Comment
Please, Sign In to add comment