#How will I script to kill a player with lowest points?
11 messages · Page 1 of 1 (latest)
would be
local PlayerToKill = nil
local HugePoints = math.huge
for _, player in Players:GetChildren() do
if player.leaderstats.Points.Value < HugePoints then
PlayerToKill = player
HugePoints = player.leaderstats.Points.Value
end
end
and then u have the local of the player to kill
👍
@snow oxide -- just for advise ping --
Tysm : ). I tried it but it didnt work
But I'll try to adjust it

can i see how did u did it ?
If it can be obviusly 🙏
I’m still trying to adjust on making it work 😮💨