Imported from ScriptBlox https://scriptblox.com/
Anti Warp for Hd admin Games
Free
script.lua
16 lines
local Players = game:GetService("Players")
local RunService = game:GetService("RunService")
local player = Players.LocalPlayer
local camera = workspace.CurrentCamera
-- Default FOV value
local defaultFOV = camera.FieldOfView
RunService.RenderStepped:Connect(function()
-- Reset any FOV changes
camera.FieldOfView = defaultFOV
-- Optional: Reset camera's CFrame if being altered
camera.CFrame = CFrame.new(camera.CFrame.Position, camera.CFrame.Position + camera.CFrame.LookVector)
end)
Description
Comments 0
Login to comment
Loading comments...
Copied!