Then what is BRO DOING ON THE DEVFORUM
Oh,for this script.This script needs major inprovements
well now that chatgpt 4o has come out and its free… its seriously has made entire functionalities for my extremely complex module scripts. “when in doubt, use ChatGPT 4o.”
local RunService = game:GetService("RunService")
local TweenService = game:GetService("TweenService")
local Workspace = game:GetService("Workspace")
local Lighting = game:GetService("Lighting")
local Sound = false
local VolumeTo = { Volume = 1 }
local VolumeBack = { Volume = 0 }
local SoundTween = TweenService:Create(script.HB, TweenInfo.new(1, Enum.EasingStyle.Quart, Enum.EasingDirection.Out, 0, false, 0), VolumeTo)
function Raycast()
local camera = Workspace.CurrentCamera
local cameraCF = camera.CFrame
local length = 1000
local params = RaycastParams.new()
local NumberTweenTo = { FieldOfView = 50 }
local NumberTweenBack = { FieldOfView = 70 }
local TintTo = { TintColor = Color3.fromRGB(255, 128, 128) }
local TintBack = { TintColor = Color3.fromRGB(255, 255, 255) }
local TintToTween = TweenService:Create(Lighting.ColorCorrection, TweenInfo.new(1, Enum.EasingStyle.Quart, Enum.EasingDirection.Out, 0, false, 0), TintTo)
local TintBackTween = TweenService:Create(Lighting.ColorCorrection, TweenInfo.new(1, Enum.EasingStyle.Quart, Enum.EasingDirection.Out, 0, false, 0), TintBack)
local MainTweenTo = TweenService:Create(Workspace.CurrentCamera, TweenInfo.new(4, Enum.EasingStyle.Quart, Enum.EasingDirection.Out, 0, false, 0), NumberTweenTo)
local MainTweenBack = TweenService:Create(Workspace.CurrentCamera, TweenInfo.new(2, Enum.EasingStyle.Quart, Enum.EasingDirection.Out, 0, false, 0), NumberTweenBack)
local raycastResult = Workspace:Raycast(cameraCF.Position, cameraCF.LookVector * length, params)
if raycastResult and raycastResult.Instance and raycastResult.Instance.Name == "TurnAroundPart" then
if not Sound then
MainTweenBack:Cancel()
MainTweenTo:Play()
wait(1.5)
Sound = true
SoundTween:Play()
wait(0.2)
TintBackTween:Cancel()
TintToTween:Play()
for i = 1, 2 do
wait(0.2)
Lighting.ColorCorrection.Enabled = i % 2 == 0
Lighting.ColorCorrection2.Enabled = i % 2 == 1
end
TweenService:Create(Lighting.ColorCorrection, TweenInfo.new(0.1, Enum.EasingStyle.Linear, Enum.EasingDirection.InOut, 0, false, 0), {TintColor = Color3.fromRGB(49, 0, 0)}):Play()
else
Sound = false
MainTweenTo:Cancel()
MainTweenBack:Play()
TintToTween:Cancel()
TintBackTween:Play()
end
else
Sound = false
MainTweenTo:Cancel()
MainTweenBack:Play()
TintToTween:Cancel()
TintBackTween:Play()
end
end
RunService.RenderStepped:Connect(Raycast)
Hope this helps …