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.

Cube Condo Invite All

Version / Update: v1.0.0
Download / Script Link
local uis = game:GetService('UserInputService')
local players = game:GetService('Players')
local remote = game:GetService('ReplicatedStorage').Applications.Events.rmi

local holding = false

uis.InputBegan:Connect(function(input, gp)
if gp then
return
end
if input.KeyCode == Enum.KeyCode.X then
holding = true
task.spawn(function()
while holding do
for _, plr in ipairs(players:GetPlayers()) do
local arguments = {
[1] = plr,
}
remote:FireServer(unpack(arguments))
end
task.wait(0.1)
end
end)
end
end)

uis.InputEnded:Connect(function(input, gp)
if input.KeyCode == Enum.KeyCode.X then
holding = false
end
end)
[ View More ]
cdb73c8a-b3f0-48f3-90f7-b7de770011e1.webp


this works for v4 condo created by cube which is just cubes on discord
 
Back
Top