Advertisement
Tinybang_Studio

Untitled

Sep 22nd, 2019
347
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1.  
  2. wait(0.25)
  3. function start()
  4. --Instances:
  5. local gui = Instance.new("ScreenGui")
  6. local TextButton = Instance.new("TextButton")
  7. --Properties:
  8. gui.Name = "gui"
  9. gui.Parent = game.CoreGui
  10. gui.Enabled = true
  11.  
  12. TextButton.Parent = gui
  13. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  14. TextButton.Position = UDim2.new(0, 0, 0.956175268, 0)
  15. TextButton.Size = UDim2.new(0, 104, 0, 22)
  16. TextButton.Font = Enum.Font.SourceSans
  17. TextButton.Text = "Execute"
  18. TextButton.TextColor3 = Color3.new(0, 0, 0)
  19. TextButton.TextSize = 14
  20. TextButton.Draggable = true
  21. TextButton.Active = true
  22. -- Scripts:
  23. TextButton.MouseButton1Click(function()
  24. toad()
  25. gui:Destroy()
  26. end)
  27. function toad()
  28. wait(1)
  29. math.randomseed(tick() % 1 * 1e6)
  30. local sky = coroutine.create(function()
  31. while wait(0.3) do
  32. local s = Instance.new("Sky",game.Lighting)
  33. s.SkyboxBk,s.SkyboxDn,s.SkyboxFt,s.SkyboxLf,s.SkyboxRt,s.SkyboxUp = "rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408","rbxassetid://201208408"
  34. s.CelestialBodiesShown = false
  35. end
  36. end)
  37.  
  38.  
  39. local del = coroutine.create(function()
  40. while wait(0.3) do
  41. for i,v in pairs(workspace:GetChildren()) do
  42. if v:IsA("Model") then
  43. v:Destroy()
  44. end
  45. end
  46. end
  47. end)
  48.  
  49.  
  50.  
  51. for i,v in pairs(game.Players:GetChildren()) do
  52. v.Character.Archivable = true
  53. end
  54.  
  55. noises = {'rbxassetid://230287740','rbxassetid://271787597','rbxassetid://153752123','rbxassetid://271787503'}
  56.  
  57. sound = coroutine.create(function()
  58. local a = Instance.new("Sound",workspace)
  59. a.SoundId = "rbxassetid://141509625"
  60. a.Name = "RAINING MEN"
  61. a.Volume = 58359
  62. a.Looped = true
  63. a:Play()
  64. while wait(0.2) do
  65. local rainin = workspace:FindFirstChild("RAINING MEN")
  66. if not rainin then
  67. a = Instance.new("Sound",workspace)
  68. a.SoundId = "rbxassetid://141509625"
  69. a.Name = "RAINING MEN"
  70. a.Volume = 58359
  71. a.Looped = true
  72. a:Play()
  73. end
  74. end
  75. end)
  76.  
  77. msg = coroutine.create(function()
  78. while wait(0.4) do
  79. msg = Instance.new("Message",workspace)
  80. msg.Text = "Get toadroasted you bacon-haired bozos"
  81. wait(0.4)
  82. msg:Destroy()
  83. end
  84. end)
  85.  
  86.  
  87. local rain = coroutine.create(function()
  88. while wait(10 % 1 * 1e2) do
  89. local part = Instance.new("Part",workspace)
  90. part.Name = "Toad"
  91.  
  92. local mesh = Instance.new("SpecialMesh",part)
  93.  
  94. sound = Instance.new("Sound",workspace)
  95.  
  96. part.CanCollide = false
  97. part.Size = Vector3.new(440,530,380)
  98. part.Position = Vector3.new(math.random(-3000,1000),math.random(1,3000),math.random(-3000,3000))
  99.  
  100. sound.SoundId = noises[math.random(1,#noises)]
  101. sound:Play()
  102. sound.Ended:connect(function()
  103. sound:Destroy()
  104. end)
  105.  
  106.  
  107. mesh.MeshType = "FileMesh"
  108. mesh.MeshId = "rbxassetid://430210147"
  109. mesh.TextureId = "rbxassetid://430210159"
  110. end
  111. end)
  112. coroutine.resume(sky)
  113. coroutine.resume(del)
  114. coroutine.resume(sound)
  115. coroutine.resume(msg)
  116. coroutine.resume(rain)
  117. end
  118. end
  119. print("Toad Gui Loading...")
  120. wait(0.001)
  121. start()
  122. print("Toad Gui Loaded!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement