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 ]
teleports you to existing chests
- Works on mobile
- Yes