Find any script for Roblox

Enter the name of the game or script.

Script – Project delta

Thank you for using our website
Your script:

NO KEY

--[[
   Made by Rileyy#0808
    General Thirdperson.lua
]]
--// Variables
local LocalPlayer = game.Players.LocalPlayer
local CurrentCamera = workspace.CurrentCamera
--// Script
local newindex; newindex = hookmetamethod(game, '__newindex', function(obj, idx, val)
   if obj == CurrentCamera and idx == 'CFrame' then
       val = val + (val.LookVector * -7)
   end
   return newindex(obj, idx, val)
end)