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.

Undertale Mania Of Heroes | Teleport To Chests

Version / Update: v1.0.0
Download / Script Link
local player = game:GetService("Players").LocalPlayer
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local character = player.Character or player.CharacterAdded:Wait()
local HRP = character:WaitForChild("HumanoidRootPart")
local Chests = ReplicatedStorage:WaitForChild("ChestsModels")

for _, v in pairs(workspace:GetDescendants()) do
if Chests:FindFirstChild(v.Name) then
local chestPart

if v:IsA("MeshPart") or v:IsA("UnionOperation") then
chestPart = v
elseif v:IsA("Model") then
chestPart = v.PrimaryPart
end

if chestPart then
HRP.CFrame = chestPart.CFrame + Vector3.new(0, 5, 0)
end
end
end
[ View More ]
144a0197-f996-409f-b6b0-b4f09a058409.webp


teleports you to existing chests
 
Works on mobile
  1. Yes
Back
Top