SebTDZ

Chill

Jul 1st, 2019
558
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. image = "http://www.roblox.com/asset/?id=2794489492"
  2. local ScreenGui = Instance.new("ScreenGui",owner.PlayerGui)
  3. ScreenGui.Name = "Chill"
  4. local asd = Instance.new("TextButton",ScreenGui)
  5. asd.BackgroundColor3 = Color3.new(0,0,0)
  6. asd.BorderColor3 = Color3.new(0,0,0)
  7. asd.Name = "Chill"
  8. asd.Position = UDim2.new(1,-150,1,-90)
  9. asd.Size = UDim2.new(0,150,0,45)
  10. asd.Font = "SourceSansBold"
  11. asd.FontSize = "Size32"
  12. asd.Text = "Chill"
  13. asd.TextColor3 = Color3.new(255,255,255)
  14. asd.MouseButton1Down:connect(function()
  15.     local Chill = Instance.new("Sound",workspace)
  16.     Chill.Looped = true
  17.     Chill.Volume = 10
  18.     Chill.SoundId = "http://www.roblox.com/asset/?id=2834969263"
  19.     Chill:Play()
  20.     while true do
  21.         local Sky = Instance.new("Sky",game.Lighting)
  22.         Sky.SkyboxBk = image
  23.         Sky.SkyboxDn = image
  24.         Sky.SkyboxFt = image
  25.         Sky.SkyboxLf = image
  26.         Sky.SkyboxRt = image
  27.         Sky.SkyboxUp = image
  28.         local Point1 = Vector3.new(-2500,-10,-2500)
  29.         local Point2 = Vector3.new(2500,2500,2000)
  30.         local Region = Region3.new(Point1,Point2)
  31.         for _,Part in pairs(game.Workspace:FindPartsInRegion3(Region,nil,math.huge)) do
  32.             Part.CFrame = CFrame.new(0,0,0)
  33.             if Part.Transparency <= 0.5 then
  34.                 Part.Transparency = 0.5
  35.             end
  36.             game:GetService("Chat"):Chat(Part,"Still Chill","Red")
  37.         end
  38.         wait(0.1)
  39.     end
  40. end)
Advertisement
Add Comment
Please, Sign In to add comment