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.

Split The Sea open source

Version / Update: v1.0.0
Download / Script Link
getgenv().ConFig = {
Auto = true,
}


local function GetCharacter()
local Players = game:GetService("Players")
local LocalPlayer = Players.LocalPlayer
return LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
end

local function GetHRP()
return GetCharacter():WaitForChild("HumanoidRootPart")
end


task.spawn(function()
while task.wait() do
if not getgenv().ConFig.Auto then continue end
local Hrp = GetHrp()
for i, v in ipairs(workspace.ActiveLoot:GetChildren()) do
if v:IsA("Model") then
v:GetPivot(Hrp.CFrame)
end
end
end
end)
[ View More ]
3749b4c6-236b-47de-ad16-6504e0715685.webp


I’m currently learning how to script, and this map isn’t very difficult, so I’m sharing it for others to study.
 
Works on mobile
  1. Yes
Back
Top