kaiju paradise Script | NIGHTCRAWLER GOGGLES

Created by HackTrainer22

Features:

_G.Tracking = true

while _G.Tracking do wait()
for i,v in next, game:GetService("Workspace").Terrain:GetChildren() do
if v.Name == "Nightvision"  then
if not v:FindFirstChild("Beam") then
local at1 = Instance.new("Attachment")
at1.Parent = v.Hitbox
local at2 = Instance.new("Attachment")
at2.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
local beamm = Instance.new("Beam")
beamm.FaceCamera = true
beamm.LightEmission = 1
beamm.Width0 = 0.5
beamm.Width1 = 0.5
beamm.Parent = v
beamm.Attachment1 = v.Hitbox.Attachment
beamm.Attachment0 = game.Players.LocalPlayer.Character.HumanoidRootPart.Attachment
end
end
end
end