igdegoo

toadroast 2

Jun 17th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. wait(2)
  2. toadsky = Instance.new("Sky")
  3. toadsky.Parent = game:GetService("Lighting")
  4. toadsky.SkyboxBk = "rbxassetid://1051820834"
  5. toadsky.SkyboxDn = "rbxassetid://1051820834"
  6. toadsky.SkyboxFt = "rbxassetid://1051820834"
  7. toadsky.SkyboxLf = "rbxassetid://1051820834"
  8. toadsky.SkyboxRt = "rbxassetid://1051820834"
  9. toadsky.SkyboxUp = "rbxassetid://1051820834"
  10.  
  11. RAININGMEN = Instance.new("Sound")
  12. RAININGMEN.Name = "holy heck"
  13. RAININGMEN.Parent = workspace
  14. RAININGMEN.SoundId = "rbxassetid://445658142"
  15. RAININGMEN.Volume = 8
  16. RAININGMEN.Looped = true
  17.  
  18. DISTORT = Instance.new("DistortionSoundEffect")
  19. DISTORT.Level = 1
  20. DISTORT.Parent = RAININGMEN
  21.  
  22. RAININGMEN:Play()
  23.  
  24. iNVERT = Instance.new("ColorCorrectionEffect")
  25. iNVERT.Parent = game:GetService("Lighting")
  26. iNVERT.Contrast = -2
  27. iNVERT.Saturation = 4
  28.  
  29. for _,i in pairs(workspace:GetChildren()) do
  30. if i:IsA("Model") and i:FindFirstChild("HumanoidRootPart") ~= nil then
  31. local newtorso = i.HumanoidRootPart:Clone()
  32. for _,i1 in pairs(newtorso:GetChildren()) do i1:Destroy()end
  33. newtorso.Anchored = true
  34. BillboardGui0 = Instance.new("BillboardGui")
  35. TextLabel1 = Instance.new("TextLabel")
  36. BillboardGui0.Parent = newtorso
  37. BillboardGui0.Size = UDim2.new(0, 200, 0, 200)
  38. BillboardGui0.AlwaysOnTop = true
  39. TextLabel1.Parent = BillboardGui0
  40. TextLabel1.Transparency = 1
  41. TextLabel1.Size = UDim2.new(1, 0, 1, 0)
  42. TextLabel1.Text = "Toad was here"
  43. TextLabel1.BackgroundColor3 = Color3.new(1, 1, 1)
  44. TextLabel1.BackgroundTransparency = 1
  45. TextLabel1.BorderSizePixel = 0
  46. TextLabel1.Font = Enum.Font.SourceSans
  47. TextLabel1.FontSize = Enum.FontSize.Size32
  48. TextLabel1.TextColor3 = Color3.new(1, 1, 1)
  49. TextLabel1.TextStrokeTransparency = 0
  50. TextLabel1.TextWrapped = true
  51. newtorso.Parent = workspace
  52. i:Destroy()
  53. end
  54. end
  55.  
  56. message = Instance.new("Message")
  57. message.Text = "get toadroasted"
  58. message.Parent = workspace
Add Comment
Please, Sign In to add comment