of     1   

kattenverzorger
#226569396Thursday, October 19, 2017 5:19 PM GMT

Just a question, because i can't find it on the wiki.
LeafDoode
#226569509Thursday, October 19, 2017 5:24 PM GMT

this script will kill all players in 3 seconds while true do wait(3) for i,v in pairs(game.Players:GetPlayers()) do if v and v.Character then local h = v.Character:WaitForChild("Humanoid") h.Health = 0 end end end ROBLOX > Minecraft
kattenverzorger
#226571567Thursday, October 19, 2017 6:50 PM GMT

Thanks
gohan31865
#226572820Thursday, October 19, 2017 7:33 PM GMT

or u can just make a function for it local function kill() local v = game.Players:GetPlayers() for i=1, #v do v[i].Character:BreakJoints() end end kill()--call whenever u need it #code error("you're*")

    of     1