Created by Regen
Features:
- 1. Fly method – Tap C to Fly
local plr = game.Players.LocalPlayer
local mouse = plr:GetMouse()
local function Leap()
local InputClient = plr.Character.CharacterHandler.InputClient
syn.secure_call(getsenv(InputClient).GaleLeap, InputClient)
end
mouse.KeyDown:connect(function(key)
if key == "c" then
Leap()
wait(0.5)
end
end)
- 2. Auto teleport to chests
local plr = game.Players.LocalPlayer
local thrown = game:GetService("Workspace").Thrown
thrown.ChildAdded:connect(function(a)
wait()
if a:IsA("Model") and string.match(a.Name, "Model") and a:FindFirstChild("InteractPrompt") and a:FindFirstChild("Part") then
local destination = a:FindFirstChild("Part")
plr.Character.HumanoidRootPart.CFrame = CFrame.new(destination.CFrame.X, destination.CFrame.Y, destination.CFrame.Z)
end
end)
ENJOY!