What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Destined Ascension | Auto Trick or Treat NPCS

Version / Update: v1.0.0
Download / Script Link
--// Services
local Players = game:GetService("Players")
local Workspace = game:GetService("Workspace")

--// Player
local player = Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local humanoid = character:WaitForChild("HumanoidRootPart")

--// NPCS
local TrickOrTreatNPCS = Workspace["ALL EVENTS"].TrickOrTreatNPCS

for _, v in TrickOrTreatNPCS:GetChildren() do
if v:IsA("Model") and v.PrimaryPart then
for i = 1, 5 do

humanoid.CFrame = v.PrimaryPart.CFrame + Vector3.new(0, 0, -3)
task.wait(2)

local p = v:FindFirstChildWhichIsA("ProximityPrompt", true)
if p then
fireproximityprompt(p)
task.wait()
end
end
end
end
[ View More ]
b0d497cd-353f-4adb-ae2b-0812d0cc4a13.webp


you have to be in the halloween world for this to teleport you and automate the process. halloween npc timers reset every 30 minutes
 
Works on mobile
  1. Yes
Back
Top