Advertisement
ArtiusFox

[Roblox Script] Toad Land Troll (NextFlamePB)

Oct 17th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.27 KB | None | 0 0
  1. -- This is Cancer lol
  2. -- In action: https://www.youtube.com/watch?v=OaXNQauvFgw
  3.  
  4. wait(1)
  5. math.randomseed(tick() % 1 * 1e6)
  6. sky = coroutine.create(function()
  7.     while wait(0.3) do
  8.         s = Instance.new("Sky",game.Lighting)
  9.         s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  10.         s.CelestialBodiesShown = false
  11.     end
  12. end)
  13.  
  14.  
  15. del = coroutine.create(function()
  16.     while wait(0.3) do
  17.         for i,v in pairs(workspace:GetChildren()) do
  18.             if v:IsA("Model") then
  19.                 v:Destroy()
  20.             end
  21.         end
  22.     end
  23. end)
  24.  
  25.  
  26.  
  27. for i,v in pairs(game.Players:GetChildren()) do
  28. end
  29.  
  30. noises = {'rbxassetid://230287740','rbxassetid://271787597','rbxassetid://153752123','rbxassetid://271787503'}
  31.  
  32. sound = coroutine.create(function()
  33.     a = Instance.new("Sound",workspace)
  34.     a.SoundId = "rbxassetid://902601313"
  35.     a.Name = "RAINING MEN"
  36.     a.Volume = 58359
  37.     a.Looped = true
  38.     a:Play()
  39.     while wait(0.2) do
  40.         rainin = workspace:FindFirstChild("RAINING MEN")
  41.         if not rainin then
  42.             a = Instance.new("Sound",workspace)
  43.             a.SoundId = "rbxassetid://902601313"
  44.             a.Name = "RAINING MEN"
  45.             a.Volume = 58359
  46.             a.Looped = true
  47.             a:Play()
  48.         end
  49.     end
  50. end)
  51.  
  52. msg = coroutine.create(function()
  53.     while wait(0.4) do
  54.         msg = Instance.new("Message",workspace)
  55.         msg.Text = "Get Toadroasted you bacon-haired script noobs. (GO QUIT FUCKED SHIT NIGGER XD)"
  56.         wait(0.4)
  57.         msg:Destroy()
  58.     end
  59. end)
  60.  
  61. rain = coroutine.create(function()
  62.     while wait(10 % 1 * 1e2) do
  63.         part = Instance.new("Part",workspace)
  64.         part.Name = "Toad"
  65.        
  66.         mesh = Instance.new("SpecialMesh",part)
  67.        
  68.         sound = Instance.new("Sound",workspace)
  69.        
  70.         part.CanCollide = false
  71.         part.Size = Vector3.new(440,530,380)
  72.         part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  73.    
  74.         sound.SoundId = noises[math.random(1,#noises)]
  75.         sound:Play()
  76.         sound.Ended:connect(function()
  77.             sound:Destroy()
  78.         end)
  79.        
  80.        
  81.         mesh.MeshType = "FileMesh"
  82.         mesh.MeshId = "rbxassetid://430210147"
  83.         mesh.TextureId = "rbxassetid://430210159"
  84.     end
  85. end)
  86. coroutine.resume(sky)
  87. coroutine.resume(del)
  88. coroutine.resume(sound)
  89. coroutine.resume(msg)
  90. coroutine.resume(rain)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement