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.

Ball TP Goalbound

Version / Update: v1.0.0
Download / Script Link
local rs = game:GetService("ReplicatedStorage");
local uis = game:GetService("UserInputService");

local blink = require(rs.Modules.Client.Core.BlinkClient);
local ball = workspace:WaitForChild("Ball");

local enabled = false;
local targetcf = CFrame.new(-8.83944035, 133.319901, 474.392853); -- change this to another position/goal

local oldkick = blink.Kicks.Kicked.Fire;
blink.Kicks.Kicked.Fire = function(p1, p2, p3)
if enabled then
p3 = targetcf;
end;
return oldkick(p1, p2, p3);
end;

uis.InputBegan:Connect(function(inp, gpe)
if gpe then return; end;
if inp.KeyCode == Enum.KeyCode.G then
enabled = not enabled;
end;
end);
[ View More ]
2e459936-69a5-4bac-8e20-92c2edcb4d76.webp


ball tp, change position for diff goal or whatever
 
Back
Top