Advertisement
HiDad910

Funky Filters

Jul 15th, 2021 (edited)
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- //Instances\\:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local MainFrame = Instance.new("Frame")
  8. local RainFilt = Instance.new("Frame")
  9. local Rainbow = Instance.new("TextButton")
  10. local Ambiance = Instance.new("TextButton")
  11. local FunkFilt = Instance.new("TextLabel")
  12. local AmbFilt = Instance.new("Frame")
  13.  
  14.  
  15. --//Properties\\:
  16.  
  17.  
  18.  
  19. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. MainFrame.Parent = ScreenGui
  23. MainFrame.BackgroundColor3 = Color3.fromRGB(106, 18, 230)
  24. MainFrame.Position = UDim2.new(0.0765027329, 0, 0.191803277, 0)
  25. MainFrame.Size = UDim2.new(0, 124, 0, 287)
  26. MainFrame.Active = true
  27. MainFrame.Draggable = true
  28.  
  29.  
  30. RainFilt.Parent = ScreenGui
  31. RainFilt.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  32. RainFilt.BackgroundTransparency = 0.500
  33. RainFilt.Position = UDim2.new(-0.45161292, 0, -0.407665521, 0)
  34. RainFilt.Size = UDim2.new(5,0,5,0)
  35.  
  36. RainFilt.Visible = false
  37.  
  38.  
  39.  
  40. Rainbow.Name = "Rainbow"
  41. Rainbow.Parent = MainFrame
  42. Rainbow.BackgroundColor3 = Color3.fromRGB(62, 147, 170)
  43. Rainbow.Position = UDim2.new(0, 0, 0.0557491258, 0)
  44. Rainbow.Size = UDim2.new(0, 124, 0, 50)
  45. Rainbow.Font = Enum.Font.SourceSans
  46. Rainbow.Text = "Rainbow Filter (Seizure Warning)"
  47. Rainbow.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. Rainbow.TextSize = 14.000
  49.  
  50. Rainbow.MouseButton1Click:Connect(function()
  51. if RainFilt.Visible == false then
  52. RainFilt.Visible = true
  53. elseif RainFilt.Visible == true then
  54. RainFilt.Visible = false
  55. end
  56. end)
  57.  
  58.  
  59. Ambiance.Name = "Ambiance"
  60. Ambiance.Parent = MainFrame
  61. Ambiance.BackgroundColor3 = Color3.fromRGB(62, 147, 170)
  62. Ambiance.Position = UDim2.new(0, 0, 0.33449477, 0)
  63. Ambiance.Size = UDim2.new(0, 124, 0, 50)
  64. Ambiance.Font = Enum.Font.SourceSans
  65. Ambiance.Text = "Ambiance Filter"
  66. Ambiance.TextColor3 = Color3.fromRGB(0, 0, 0)
  67. Ambiance.TextSize = 14.000
  68. Ambiance.MouseButton1Click:Connect(function()
  69. if AmbFilt.Visible == false then
  70. AmbFilt.Visible = true
  71. elseif AmbFilt.Visible == true then
  72. AmbFilt.Visible = false
  73. end
  74. end)
  75.  
  76. FunkFilt.Name = "FunkFilt"
  77. FunkFilt.Parent = MainFrame
  78. FunkFilt.BackgroundColor3 = Color3.fromRGB(103, 16, 1)
  79. FunkFilt.Position = UDim2.new(0, 0, 0.825783968, 0)
  80. FunkFilt.Size = UDim2.new(0, 124, 0, 50)
  81. FunkFilt.Font = Enum.Font.SourceSans
  82. FunkFilt.Text = "Funky Filters"
  83. FunkFilt.TextColor3 = Color3.fromRGB(0, 0, 0)
  84. FunkFilt.TextSize = 14.000
  85.  
  86. AmbFilt.Parent = ScreenGui
  87. AmbFilt.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  88. AmbFilt.BackgroundTransparency = 0.500
  89. AmbFilt.Position = UDim2.new(-0.45161289, 0, -0.407665491, 0)
  90. AmbFilt.Size = UDim2.new(5,0,5,0)
  91. AmbFilt.Visible = false
  92.  
  93. while wait() do
  94. while true do
  95. for i = 0,1,0.001*_G.speed do
  96. RainFilt.BackgroundColor3 = Color3.fromHSV(i,1,1) --creates a color using i
  97. wait()
  98. end
  99. end
  100. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement