SebTDZ

Booked Virus

Jul 28th, 2019
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.18 KB | None | 0 0
  1. Music = Instance.new("Sound",workspace)
  2. Music.SoundId = "rbxassetid://202655498"
  3. Music.Name = "Music"
  4. Music.Volume = 9999
  5. Music:Play()
  6.  
  7. wait(10)
  8.  
  9. for i=1,2500 do
  10.     local Point1 = Vector3.new(tonumber("-" .. string.format(i)),-10,tonumber("-" .. string.format(i)))
  11.     local Point2 = Vector3.new(i,2500,i)
  12.     local Region = Region3.new(Point1,Point2)
  13.     local Parts = game.workspace:FindPartsInRegion3(Region,nil,math.huge)
  14.     for _,Part in pairs(Parts) do
  15.         if Part.Name ~= "Base" and game.Players:GetPlayerFromCharacter(Part.Parent) == nil then
  16.             Part.Size = Part.Size / Vector3.new(math.random(1,5),math.random(1,5),math.random(1,5))
  17.         end
  18.     end
  19.     wait(0.075)
  20. end
  21.  
  22. while true do
  23.     local i = 2500
  24.     local Point1 = Vector3.new(tonumber("-" .. string.format(i)),-10,tonumber("-" .. string.format(i)))
  25.     local Point2 = Vector3.new(i,2500,i)
  26.     local Region = Region3.new(Point1,Point2)
  27.     local Parts = game.workspace:FindPartsInRegion3(Region,nil,math.huge)
  28.     for _,Part in pairs(Parts) do
  29.         if Part.Name ~= "Base" and game.Players:GetPlayerFromCharacter(Part.Parent) == nil then
  30.             Part.Size = Part.Size / Vector3.new(math.random(1,5),math.random(1,5),math.random(1,5))
  31.         end
  32.     end
  33.     wait(0.075)
  34. end
Advertisement
Add Comment
Please, Sign In to add comment