How to make an advanced clicking simulator part.2 (Rebirths) *FREE SCRIPTS*

Опубликовано: 15 Июль 2026
на канале: AlfieDeveloper14 🐱
20
0

Today we are making the rebirths

---------------------------------------------------scripts------------------------------------------------------
Open:

script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.RebirthsFrame.Visible = true
end)

Close:

script.Parent.MouseButton1Click:Connect(function()
script.Parent.Parent.Parent.Visible = false
end)

Rebirth:

script.Parent.MouseButton1Click:Connect(function()
local player = game.Players.LocalPlayer
local clicks = player.leaderstats.Clicks
local rebirths = player.leaderstats.Rebirths

if clicks.Value *Greater than*= 10 then
rebirths.Value = rebirths.Value + 1
clicks.Value = 0
end
end)