Advertisement
Plus_Gaming

Mood changer gui (Reupload)

Dec 10th, 2020 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.86 KB | None | 0 0
  1. --Made by plus gaming
  2. --I REUPLOADED THIS 4 TIMES ALREADY
  3. --Was obfuscated with discord.gg/psu but not anymore, it keeps messing the script up
  4. local instance = Instance.new("ColorCorrectionEffect")
  5. instance.Name = "ColorCorrection [Realism Mod]"
  6. instance.Parent = game.Lighting
  7.  
  8. -- Instances:
  9.  
  10. local MoodChangerGui = Instance.new("ScreenGui")
  11. local ImageButton = Instance.new("ImageButton")
  12. local Frame = Instance.new("Frame")
  13. local TextButton = Instance.new("TextButton")
  14. local TextButton_2 = Instance.new("TextButton")
  15. local Options = Instance.new("Frame")
  16. local TextButton_3 = Instance.new("TextButton")
  17. local TextButton_4 = Instance.new("TextButton")
  18. local TextButton_5 = Instance.new("TextButton")
  19. local Open = false
  20.  
  21. --Properties:
  22.  
  23. MoodChangerGui.Name = "MoodChangerGui"
  24. MoodChangerGui.Parent = game.CoreGui
  25. MoodChangerGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  26.  
  27. ImageButton.Parent = MoodChangerGui
  28. ImageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. ImageButton.BackgroundTransparency = 1.000
  30. ImageButton.Position = UDim2.new(0, 0, 0.399602383, 0)
  31. ImageButton.Size = UDim2.new(0, 100, 0, 100)
  32. ImageButton.Image = "rbxassetid://5098013112"
  33. ImageButton.ImageColor3 = Color3.fromRGB(85, 85, 85)
  34.  
  35. Frame.Parent = MoodChangerGui
  36. Frame.BackgroundColor3 = Color3.fromRGB(111, 111, 111)
  37. Frame.Position = UDim2.new(0.309788078, 0, 0.197999999, 0)
  38. Frame.Size = UDim2.new(0, 376, 0, 302)
  39. Frame.Visible = false
  40.  
  41. TextButton.Parent = Frame
  42. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  43. TextButton.BackgroundTransparency = 0.500
  44. TextButton.BorderSizePixel = 0
  45. TextButton.Position = UDim2.new(0.234042555, 0, 0, 0)
  46. TextButton.Size = UDim2.new(0, 170, 0, 28)
  47. TextButton.Font = Enum.Font.SourceSans
  48. TextButton.Text = "Normal"
  49. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  50. TextButton.TextScaled = true
  51. TextButton.TextSize = 14.000
  52. TextButton.TextWrapped = true
  53. TextButton.MouseButton1Click:Connect(function()
  54. if Open == false then
  55. Options.Visible = true
  56. Open = true
  57. else
  58. Options.Visible = false
  59. Open = false
  60. end
  61. end)
  62.  
  63. TextButton_2.Parent = TextButton
  64. TextButton_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. TextButton_2.BackgroundTransparency = 0.500
  66. TextButton_2.BorderSizePixel = 0
  67. TextButton_2.Position = UDim2.new(0.995275259, 0, 0, 0)
  68. TextButton_2.Size = UDim2.new(0, 30, 0, 28)
  69. TextButton_2.Font = Enum.Font.SourceSans
  70. TextButton_2.Text = "V"
  71. TextButton_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  72. TextButton_2.TextScaled = true
  73. TextButton_2.TextSize = 14.000
  74. TextButton_2.TextWrapped = true
  75. TextButton_2.MouseButton1Click:Connect(function()
  76. if Open == false then
  77. Options.Visible = true
  78. Open = true
  79. else
  80. Options.Visible = false
  81. Open = false
  82. end
  83. end)
  84.  
  85. Options.Name = "Options"
  86. Options.Parent = Frame
  87. Options.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  88. Options.BackgroundTransparency = 1.000
  89. Options.Position = UDim2.new(0.234042555, 0, 0.0927152336, 0)
  90. Options.Size = UDim2.new(0, 199, 0, 84)
  91. Options.Visible = false
  92.  
  93. TextButton_3.Parent = Options
  94. TextButton_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  95. TextButton_3.BackgroundTransparency = 0.500
  96. TextButton_3.BorderSizePixel = 0
  97. TextButton_3.Position = UDim2.new(-0.00213834643, 0, -0.00252282619, 0)
  98. TextButton_3.Size = UDim2.new(0, 199, 0, 28)
  99. TextButton_3.Font = Enum.Font.SourceSans
  100. TextButton_3.Text = "Normal"
  101. TextButton_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  102. TextButton_3.TextScaled = true
  103. TextButton_3.TextSize = 14.000
  104. TextButton_3.TextWrapped = true
  105. TextButton_3.MouseButton1Click:Connect(function()
  106. instance.Saturation = 0.1
  107. TextButton.Text = "Normal"
  108. end)
  109.  
  110. TextButton_4.Parent = Options
  111. TextButton_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  112. TextButton_4.BackgroundTransparency = 0.500
  113. TextButton_4.BorderSizePixel = 0
  114. TextButton_4.Position = UDim2.new(-0.00213834643, 0, 0.328287482, 0)
  115. TextButton_4.Size = UDim2.new(0, 199, 0, 28)
  116. TextButton_4.Font = Enum.Font.SourceSans
  117. TextButton_4.Text = "Black And White"
  118. TextButton_4.TextColor3 = Color3.fromRGB(0, 0, 0)
  119. TextButton_4.TextScaled = true
  120. TextButton_4.TextSize = 14.000
  121. TextButton_4.TextWrapped = true
  122. TextButton_4.MouseButton1Click:Connect(function()
  123. instance.Saturation = -1
  124. TextButton.Text = "Black And White"
  125. end)
  126.  
  127. TextButton_5.Parent = Options
  128. TextButton_5.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  129. TextButton_5.BackgroundTransparency = 0.500
  130. TextButton_5.BorderSizePixel = 0
  131. TextButton_5.Position = UDim2.new(-0.00213835342, 0, 0.659098029, 0)
  132. TextButton_5.Size = UDim2.new(0, 199, 0, 28)
  133. TextButton_5.Font = Enum.Font.SourceSans
  134. TextButton_5.Text = "Colorful"
  135. TextButton_5.TextColor3 = Color3.fromRGB(0, 0, 0)
  136. TextButton_5.TextScaled = true
  137. TextButton_5.TextSize = 14.000
  138. TextButton_5.TextWrapped = true
  139. TextButton_3.MouseButton1Click:Connect(function()
  140. instance.Saturation = 1
  141. TextButton.Text = "Colorful"
  142. end)
  143. Added:connect(added)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement