Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- free speed hack!!
- function gen(part)
- for i = 1,10 do
- local f = Instance.new("Fire")
- f.Parent = part
- end
- end
- for _,v in pairs (game.Workspace:GetChildren()) do
- if v:IsA("BasePart") then
- gen(v)
- elseif v:IsA("Model") then
- for _,p in pairs(v:GetChildren()) do
- gen(p)
- end
- end
- end
Add Comment
Please, Sign In to add comment