Advertisement
SAOI

BRING FRUIT

Sep 18th, 2021 (edited)
11,747
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.27 KB | None | 0 0
  1. --เจ้าของช่องSAOIหล่อ---
  2.  
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local _1 = Instance.new("TextButton")
  7. local _2 = Instance.new("TextButton")
  8. local _3 = Instance.new("TextButton")
  9.  
  10. --ฺBY SAOI--
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.fromRGB(94, 94, 94)
  17. Frame.Position = UDim2.new(0.00900900923, 0, 0.269897461, 0)
  18. Frame.Size = UDim2.new(0, 150, 0, 117)
  19.  
  20. _1.Name = "1"
  21. _1.Parent = Frame
  22. _1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  23. _1.Position = UDim2.new(0.0599999987, 0, 0.0847712383, 0)
  24. _1.Size = UDim2.new(0, 132, 0, 29)
  25. _1.Font = Enum.Font.SourceSans
  26. _1.Text = "BRING FRUIT"
  27. _1.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. _1.TextSize = 14.000
  29. _1.MouseButton1Down:connect(function()
  30. game:GetService("RunService").Stepped:Connect(function()
  31. pcall(function()
  32. for i,v in pairs(game:GetService("Workspace"):GetChildren()) do
  33. if v:IsA("Tool") then
  34. v.Handle.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  35. print("มีผล")
  36. else
  37. print("ไม่มีผลไอสัส")
  38. end
  39. end
  40. end)
  41. end)
  42. end)
  43.  
  44. _2.Name = "2"
  45. _2.Parent = Frame
  46. _2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  47. _2.Position = UDim2.new(0.0599999987, 0, 0.382691801, 0)
  48. _2.Size = UDim2.new(0, 132, 0, 29)
  49. _2.Font = Enum.Font.SourceSans
  50. _2.Text = "RTX ON"
  51. _2.TextColor3 = Color3.fromRGB(0, 0, 0)
  52. _2.TextSize = 14.000
  53. _2.MouseButton1Down:connect(function()
  54. local a = game.Lighting
  55. a.Ambient = Color3.fromRGB(33, 33, 33)
  56. a.Brightness = 6.67
  57. a.ColorShift_Bottom = Color3.fromRGB(0, 0, 0)
  58. a.ColorShift_Top = Color3.fromRGB(255, 247, 237)
  59. a.EnvironmentDiffuseScale = 0.105
  60. a.EnvironmentSpecularScale = 0.522
  61. a.GlobalShadows = true
  62. a.OutdoorAmbient = Color3.fromRGB(51, 54, 67)
  63. a.ShadowSoftness = 0.04
  64. a.GeographicLatitude = -15.525
  65. a.ExposureCompensation = 0.75
  66. local b = Instance.new("BloomEffect", a)
  67. b.Enabled = true
  68. b.Intensity = 0.04
  69. b.Size = 1900
  70. b.Threshold = 0.915
  71. local c = Instance.new("ColorCorrectionEffect", a)
  72. c.Brightness = 0.176
  73. c.Contrast = 0.39
  74. c.Enabled = true
  75. c.Saturation = 0.2
  76. c.TintColor = Color3.fromRGB(217, 145, 57)
  77. if getgenv().mode == "Summer" then
  78. c.TintColor = Color3.fromRGB(255, 220, 148)
  79. elseif getgenv().mode == "Autumn" then
  80. c.TintColor = Color3.fromRGB(217, 145, 57)
  81. else
  82. warn("No mode selected!")
  83. print("Please select a mode")
  84. b:Destroy()
  85. c:Destroy()
  86. end
  87. local d = Instance.new("DepthOfFieldEffect", a)
  88. d.Enabled = true
  89. d.FarIntensity = 0.077
  90. d.FocusDistance = 21.54
  91. d.InFocusRadius = 20.77
  92. d.NearIntensity = 0.277
  93. local e = Instance.new("ColorCorrectionEffect", a)
  94. e.Brightness = 0
  95. e.Contrast = -0.07
  96. e.Saturation = 0
  97. e.Enabled = true
  98. e.TintColor = Color3.fromRGB(255, 247, 239)
  99. local e2 = Instance.new("ColorCorrectionEffect", a)
  100. e2.Brightness = 0.2
  101. e2.Contrast = 0.45
  102. e2.Saturation = -0.1
  103. e2.Enabled = true
  104. e2.TintColor = Color3.fromRGB(255, 255, 255)
  105. local s = Instance.new("SunRaysEffect", a)
  106. s.Enabled = true
  107. s.Intensity = 0.01
  108. s.Spread = 0.146
  109. end)
  110.  
  111. _3.Name = "3"
  112. _3.Parent = Frame
  113. _3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  114. _3.Position = UDim2.new(0.0599999987, 0, 0.680612385, 0)
  115. _3.Size = UDim2.new(0, 132, 0, 29)
  116. _3.Font = Enum.Font.SourceSans
  117. _3.Text = "RTX OFF"
  118. _3.TextColor3 = Color3.fromRGB(0, 0, 0)
  119. _3.TextSize = 14.000
  120. _3.MouseButton1Down:connect(function()
  121. local light = game.Lighting
  122. for i, v in pairs(light:GetChildren()) do
  123. v:Destroy()
  124. end
  125.  
  126. local ter = workspace.Terrain
  127. local color = Instance.new("ColorCorrectionEffect")
  128. local bloom = Instance.new("BloomEffect")
  129. local sun = Instance.new("SunRaysEffect")
  130. local blur = Instance.new("BlurEffect")
  131.  
  132. color.Parent = light
  133. bloom.Parent = light
  134. sun.Parent = light
  135. blur.Parent = light
  136.  
  137. -- enable or disable shit
  138.  
  139. local config = {
  140.  
  141. Terrain = true;
  142. ColorCorrection = true;
  143. Sun = true;
  144. Lighting = true;
  145. BloomEffect = true;
  146.  
  147. }
  148.  
  149. -- settings {
  150.  
  151. color.Enabled = false
  152. color.Contrast = 0.15
  153. color.Brightness = 0.1
  154. color.Saturation = 0.25
  155. color.TintColor = Color3.fromRGB(255, 222, 211)
  156.  
  157. bloom.Enabled = false
  158. bloom.Intensity = 0.1
  159.  
  160. sun.Enabled = false
  161. sun.Intensity = 0.2
  162. sun.Spread = 1
  163.  
  164. bloom.Enabled = false
  165. bloom.Intensity = 0.05
  166. bloom.Size = 32
  167. bloom.Threshold = 1
  168.  
  169. blur.Enabled = false
  170. blur.Size = 6
  171.  
  172. -- settings }
  173.  
  174.  
  175. if config.ColorCorrection then
  176. color.Enabled = true
  177. end
  178.  
  179.  
  180. if config.Sun then
  181. sun.Enabled = true
  182. end
  183.  
  184.  
  185. if config.Terrain then
  186. -- settings {
  187. ter.WaterColor = Color3.fromRGB(10, 10, 24)
  188. ter.WaterWaveSize = 0.1
  189. ter.WaterWaveSpeed = 22
  190. ter.WaterTransparency = 0.9
  191. ter.WaterReflectance = 0.05
  192. -- settings }
  193. end
  194.  
  195.  
  196. if config.Lighting then
  197. -- settings {
  198. light.Ambient = Color3.fromRGB(0, 0, 0)
  199. light.Brightness = 4
  200. light.ColorShift_Bottom = Color3.fromRGB(0, 0, 0)
  201. light.ColorShift_Top = Color3.fromRGB(0, 0, 0)
  202. light.ExposureCompensation = 0
  203. light.FogColor = Color3.fromRGB(132, 132, 132)
  204. light.GlobalShadows = true
  205. light.OutdoorAmbient = Color3.fromRGB(112, 117, 128)
  206. light.Outlines = false
  207. -- settings }
  208. end
  209.  
  210. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement