ADVERTISEMENTREMOVE ADS
Game icon

Auto Heartbreak

Script preview thumbnail
Script Preview

Description

Keybind is "J"


Just a very basic auto heartbreak that teleports to each "Girl" and does the proximity prompt

After each "heart break" it damages the player so you will die every time but its pretty op.

ADVERTISEMENTREMOVE ADS
62 Lines • 1.92 KiB
Verified
Raw
-- open source because it took me 5 minutes
local player = game.Players.LocalPlayer
local enabled = false
local cooldowns = {}
local function loop()
if not enabled then return end
local girlsFolder = workspace:FindFirstChild("Girls")
if not girlsFolder then return end
local char = player.Character
if not char then return end
local root = char:FindFirstChild("HumanoidRootPart")
if not root then return end
for _, girl in ipairs(girlsFolder:GetChildren()) do
if not enabled then break end
if girl:IsA("Model") and girl:FindFirstChildOfClass("Humanoid") then
if cooldowns[girl] and os.time() - cooldowns[girl] < 10 then
continue
end
local girlPos = girl.PrimaryPart and girl.PrimaryPart.Position or
(girl:FindFirstChild("HumanoidRootPart") and girl:FindFirstChild("HumanoidRootPart").Position)
if girlPos then
root.CFrame = CFrame.new(girlPos + Vector3.new(0, 3, 0))
task.wait(0.2)
local prompt = girl:FindFirstChildOfClass("ProximityPrompt")
if prompt then
fireproximityprompt(prompt)
end
cooldowns[girl] = os.time()
task.wait(0.3)
end
end
end
end
local connection
game:GetService("UserInputService").InputBegan:Connect(function(input)
if input.KeyCode == Enum.KeyCode.J then
enabled = not enabled
if enabled then
connection = game:GetService("RunService").Heartbeat:Connect(loop)
else
if connection then
connection:Disconnect()
connection = nil
end
cooldowns = {}
end
end
end)
print("made by script.er")
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS