-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlobotomy
44 lines (35 loc) · 1.33 KB
/
lobotomy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
-- made by sonat
_ L_orangejuice
local ids = {"rbxassetid://8863377426","rbxassetid://7816195044","rbxassetid://252192336","rbxassetid://5096003821"}
local lobotomysound = Instance.new("Sound")
lobotomysound.Looped = true
lobotomysound.Volume = 0.1
lobotomysound.SoundId = "rbxassetid://7817626386"
lobotomysound.Parent = workspace
lobotomysound:Play()
local humanoid = game.Players.LocalPlayer.Character.Humanoid
local colorcorrection = Instance.new("ColorCorrectionEffect")
local lobotomisedfov = 50
local normalfov = 100
local camera = game.Workspace.CurrentCamera
local sound = Instance.new("Sound")
sound.Volume = 10
sound.Parent = workspace
local colors = {Color3.fromRGB(185,21,255),Color3.fromRGB(255, 0, 4),Color3.fromRGB(70, 37, 255),Color3.fromRGB(255, 126, 52)}
colorcorrection.TintColor = Color3.fromRGB(185,21,255)
colorcorrection.Contrast = 99
colorcorrection.Brightness = -20
colorcorrection.Saturation = 0.1
while true do
task.wait(math.random(1,15))
colorcorrection.TintColor = colors[math.random(1,#colors)]
colorcorrection.Parent = game.Lighting
sound.SoundId = ids[math.random(1,#ids)]
sound:Play()
humanoid.Sit = true
camera.FieldOfView = lobotomisedfov
task.wait(sound.TimeLength + 7)
humanoid.Sit = false
colorcorrection.Parent = game.ReplicatedStorage
camera.FieldOfView = normalfov
end