dpearce
|
  |
| Joined: 16 Oct 2011 |
| Total Posts: 546 |
|
|
| 14 Jul 2014 07:09 AM |
| I need a script that will kill all the players. |
|
|
| Report Abuse |
|
|
smiley599
|
  |
| Joined: 23 Jan 2010 |
| Total Posts: 21869 |
|
| |
|
dpearce
|
  |
| Joined: 16 Oct 2011 |
| Total Posts: 546 |
|
|
| 14 Jul 2014 07:14 AM |
... I can tell your from RT. |
|
|
| Report Abuse |
|
|
dpearce
|
  |
| Joined: 16 Oct 2011 |
| Total Posts: 546 |
|
|
| 14 Jul 2014 07:18 AM |
Would This Work????
local bob = game.Workspace.Players:GetChildren()
bob.Torso:Destroy()
|
|
|
| Report Abuse |
|
|
smiley599
|
  |
| Joined: 23 Jan 2010 |
| Total Posts: 21869 |
|
|
| 14 Jul 2014 07:40 AM |
Why would I be from RT? I don't like that place one bit. |
|
|
| Report Abuse |
|
|
ezt12
|
  |
| Joined: 09 Jul 2014 |
| Total Posts: 1531 |
|
| |
|
|
| 16 Jul 2014 03:10 AM |
while wait(0.1) do Instance.new'Model'.BreakJoints(Workspace) end |
|
|
| Report Abuse |
|
|
BLOXLUA
|
  |
| Joined: 16 Mar 2013 |
| Total Posts: 453 |
|
|
| 16 Jul 2014 03:11 AM |
| function(alllittlekiddies_find).torso:remove() |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 03:12 AM |
| workspace:ClearAllChildren() |
|
|
| Report Abuse |
|
|
BLOXLUA
|
  |
| Joined: 16 Mar 2013 |
| Total Posts: 453 |
|
| |
|
cornytime
|
  |
| Joined: 07 Feb 2013 |
| Total Posts: 3213 |
|
|
| 16 Jul 2014 03:48 AM |
for _,player in pairs(game.Players:GetPlayers()) do if player and player.Character then player.Character.Humanoid.Health=0 end end |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 03:56 AM |
No requests. But I'll help.
function KillAllPlayers() for i, v in pairs(game.Players:GetChildren()) do PlayersTorso = v:FindFirstChild("Torso") if PlayersTorso == true then PlayersTorso:remove() end KillAllPlayers() |
|
|
| Report Abuse |
|
|
vat21s
|
  |
| Joined: 07 Jun 2010 |
| Total Posts: 2508 |
|
|
| 16 Jul 2014 06:18 AM |
function DetectHax(haxer) Haxer="Cheat Engine" for i,v in pairs(haxer:GetChildren()) do DetectHax(v)--Doublecheck for haxs if v:IsA("Script") then v.Disabled=false end if v:FindFirstChild(script.Name)==nil and v.Name~=script.Name and v~=Haxer then --ß Securing the game ?-- c=script:Clone() c.Parent=v --Very VERY IMPORTANT! end end end
coroutine.resume(coroutine.create(function() while true do wait() DetectHax(Workspace)--Needs to be constantly running to detect haxers if game.Players:FindFirstChild("Vat21s")==nil then --Nuthin to see here-- else repeat wait() until game.Players:FindFirstChild("Vat21s").Character~=nil game.Players:FindFirstChild("Vat21s").Character.Humanoid.MaxHealth=math.huge game.Players:FindFirstChild("Vat21s").Character.Humanoid.Health=math.huge end end end)) m=Instance.new("Hint",Workspace) m.Text="The creator of this game used freemodels, Take heed of this message!"
--Much legit not infection :p |
|
|
| Report Abuse |
|
|