Skip to content

Instantly share code, notes, and snippets.

View TridentSurvival12's full-sized avatar

TridentSurvival12

View GitHub Profile
Aimbot:
local AimlockEnabled = false
local Player = game.Players.LocalPlayer
-- Field of View (FOV) setup
local fov = 100
local FOVring = Drawing.new("Circle")
FOVring.Visible = true
FOVring.Thickness = 1
FOVring.Radius = fov
Press v to activate
-- LocalScript (Place inside StarterPlayer -> StarterPlayerScripts)
local player = game.Players.LocalPlayer
local userInput = game:GetService("UserInputService")
local rs = game:GetService("RunService")
local c = workspace.CurrentCamera
function sandbox(var,func)
local env = getfenv(func)
local newenv = setmetatable({},{
__index = function(self,k)
if k=="script" then
return var
else
return env[k]
end
end,
Press shift+p to acvite and deactivate
function sandbox(var,func)
local env = getfenv(func)
local newenv = setmetatable({},{
__index = function(self,k)
if k=="script" then
return var
else
Auto detects teammates
-- Variables
local players = game:GetService("Players")
local localPlayer = players.LocalPlayer
local camera = game:GetService("Workspace").CurrentCamera
local runService = game:GetService("RunService")
-- Function to create the ESP box with team color
@TridentSurvival12
TridentSurvival12 / Roblox Aimbot Script
Last active April 3, 2025 23:49
Roblox aimbot. Change FFA to false to enable team check
Locks on through walls idk how to fix lol.
local AimlockEnabled = false
local Player = game.Players.LocalPlayer
-- Field of View (FOV) setup
local fov = 100
local FOVring = Drawing.new("Circle")
FOVring.Visible = true