www.roblox-scripter.com

Script – Project delta

Thank you for using our website
Your script:

				
					--[[
   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)
				
			

How about trying out new scripts?