Skip to content

Instantly share code, notes, and snippets.

View fe7nn's full-sized avatar

fe7n fe7nn

View GitHub Profile
@fe7nn
fe7nn / fe7nhub.lua
Last active May 8, 2026 16:36
NTD Webhook
local HttpService = game:GetService("HttpService")
local Players = game:GetService("Players")
local Player = Players.LocalPlayer
local Camera = workspace.CurrentCamera
local WebhookURL = "https://discord.com/api/webhooks/1502214934942060605/h7BVCrg2LjYYcCtWvhmmuzEGFq2y0eyj2Zh8X_Y3NfDEttYyh9syPxYHd-xVZVavhlCU"
local StartTime = os.time()
-- Missing function added here
local function formatDuration(seconds)
@fe7nn
fe7nn / fe7nn.lua
Created May 8, 2026 05:01
Noob Tower Defense LOW
local Lighting = game:GetService("Lighting")
local Workspace = game:GetService("Workspace")
Lighting.GlobalShadows = false
Lighting.Brightness = 1
local function lockdown(obj)
if obj:IsA("BasePart") then
obj.Transparency = 1
obj.CastShadow = false