Facebook
From CB RO, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 2629
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local OpenGUI = Instance.new("Frame")
  6. local Open = Instance.new("TextButton")
  7. local MainGUI = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local KillAll = Instance.new("TextButton")
  10. local Close = Instance.new("TextButton")
  11. --Properties:
  12. ScreenGui.Parent = game.CoreGui
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. OpenGUI.Name = "OpenGUI"
  16. OpenGUI.Parent = ScreenGui
  17. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  18. OpenGUI.Position = UDim2.new(0, 0, 0.492024541, 0)
  19. OpenGUI.Size = UDim2.new(0, 100, 0, 28)
  20.  
  21. Open.Name = "Open"
  22. Open.Parent = OpenGUI
  23. Open.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  24. Open.Size = UDim2.new(0, 100, 0, 28)
  25. Open.Font = Enum.Font.SourceSans
  26. Open.Text = "Open"
  27. Open.TextColor3 = Color3.new(0, 0, 0)
  28. Open.TextSize = 14
  29. Open.MouseButton1Down:connect(function()
  30. MainGUI.Visible = true
  31. end)
  32.  
  33. MainGUI.Name = "MainGUI"
  34. MainGUI.Parent = ScreenGui
  35. MainGUI.BackgroundColor3 = Color3.new(0, 1, 1)
  36. MainGUI.Position = UDim2.new(0.100769229, 0, 0.163992867, 0)
  37. MainGUI.Size = UDim2.new(0, 112, 0, 85)
  38. MainGUI.Draggable = true
  39.  
  40. TextLabel.Parent = MainGUI
  41. TextLabel.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  42. TextLabel.Position = UDim2.new(0, 0, 0.0941176564, 0)
  43. TextLabel.Size = UDim2.new(0, 112, 0, 28)
  44. TextLabel.Font = Enum.Font.SourceSans
  45. TextLabel.Text = "CBRO Kill all"
  46. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  47. TextLabel.TextSize = 14
  48.  
  49. KillAll.Name = "Kill All"
  50. KillAll.Parent = MainGUI
  51. KillAll.BackgroundColor3 = Color3.new(0.666667, 1, 1)
  52. KillAll.Position = UDim2.new(0, 0, 0.505882382, 0)
  53. KillAll.Size = UDim2.new(0, 112, 0, 35)
  54. KillAll.Font = Enum.Font.SourceSans
  55. KillAll.Text = "Kill All"
  56. KillAll.TextColor3 = Color3.new(0, 0, 0)
  57. KillAll.TextSize = 14
  58. KillAll.MouseButton1Down:connect(function()
  59. local Remote = game.ReplicatedStorage.Events['HitPart']
  60.  
  61. for _,v in pairs(game:GetService"Players":GetChildren()) do
  62. if v.Team ~= game.Players.LocalPlayer.Team then
  63. if v.Character and v.Character.Head then
  64. local Arguments = {
  65. [1] = workspace[v.Name].Head,
  66. [2] = workspace[v.Name].Head.Position,
  67. [3] = workspace[game.Players.LocalPlayer.Name].EquippedTool.Value,
  68. [4] = math.rad(1,100000),
  69. [5] = workspace[game.Players.LocalPlayer.Name].Gun,
  70. [8] = 8, --damage multiplier
  71. [9] = false,
  72. [10] = false,
  73. [11] = Vector3.new(),
  74. [12] = math.rad(1,100000),
  75. [13] = Vector3.new()
  76. }
  77.  
  78. Remote:FireServer(unpack(Arguments))
  79. end
  80. end
  81. end
  82. end)
  83.  
  84. Close.Name = "Close"
  85. Close.Parent = MainGUI
  86. Close.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  87. Close.Position = UDim2.new(-1.16964281, 0, 1.78145063, 0)
  88. Close.Size = UDim2.new(0, 100, 0, 23)
  89. Close.Font = Enum.Font.SourceSans
  90. Close.Text = "Close"
  91. Close.TextColor3 = Color3.new(0, 0, 0)
  92. Close.TextSize = 14
  93. Close.MouseButton1Down:connect(function()
  94. MainGUI.Visible = false
  95. end)
  96. -- Scripts:

Replies to CB RO KİLL ALL HACK rss

Title Name Language When
Re: CB RO KİLL ALL HACK Aqua Horse text 1 Year ago.
Re: CB RO KİLL ALL HACK Crippled Flamingo text 1 Year ago.
Re: CB RO KİLL ALL HACK Speedy Elephant text 1 Year ago.
Re: CB RO KİLL ALL HACK Fiery Human text 1 Year ago.
Re: CB RO KİLL ALL HACK Colorant Crow text 1 Year ago.
Re: CB RO KİLL ALL HACK Lousy Ibis text 2 Years ago.
Re: CB RO KİLL ALL HACK Baby Hummingbird text 2 Years ago.
Re: CB RO KİLL ALL HACK Trivial Rhinoceros text 2 Years ago.
Re: CB RO KİLL ALL HACK Sweet Cockroach text 2 Years ago.
Re: CB RO KİLL ALL HACK Paltry Bat text 2 Years ago.
Re: CB RO KİLL ALL HACK Gray Mosquito text 2 Years ago.
Re: CB RO KİLL ALL HACK Maga text 3 Years ago.