Moe7887

deez

Feb 14th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 KB | None | 0 0
  1. -- Objects
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local IceBreaker = Instance.new("TextLabel")
  6. local Thaw = Instance.new("TextButton")
  7. local Freeze = Instance.new("TextButton")
  8. local Kill = Instance.new("TextButton")
  9.  
  10. -- Properties
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.Active = true
  16. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  17. Frame.BackgroundTransparency = 0.5
  18. Frame.Draggable = true
  19. Frame.Position = UDim2.new(0, 341, 0, 41)
  20. Frame.Size = UDim2.new(0, 330, 0, 410)
  21.  
  22. IceBreaker.Name = "IceBreaker"
  23. IceBreaker.Parent = Frame
  24. IceBreaker.BackgroundColor3 = Color3.new(0, 0, 0)
  25. IceBreaker.BackgroundTransparency = 0.5
  26. IceBreaker.Position = UDim2.new(0, 90, 0, 0)
  27. IceBreaker.Size = UDim2.new(0, 150, 0, 50)
  28. IceBreaker.Font = Enum.Font.SciFi
  29. IceBreaker.FontSize = Enum.FontSize.Size24
  30. IceBreaker.Text = "IceBreaker Gui"
  31. IceBreaker.TextColor3 = Color3.new(0, 1, 1)
  32. IceBreaker.TextSize = 24
  33.  
  34. Thaw.Name = "Thaw"
  35. Thaw.Parent = Frame
  36. Thaw.BackgroundColor3 = Color3.new(0, 0, 0)
  37. Thaw.BackgroundTransparency = 0.5
  38. Thaw.Position = UDim2.new(0, 90, 0, 106)
  39. Thaw.Size = UDim2.new(0, 155, 0, 50)
  40. Thaw.Font = Enum.Font.SciFi
  41. Thaw.FontSize = Enum.FontSize.Size18
  42. Thaw.Text = "Thaw Team + Freeze Enemy Nearby"
  43. Thaw.TextColor3 = Color3.new(0, 1, 1)
  44. Thaw.TextSize = 18
  45.  
  46.  
  47.  
  48. Freeze.Name = "Freeze"
  49. Freeze.Parent = Frame
  50. Freeze.BackgroundColor3 = Color3.new(0, 0, 0)
  51. Freeze.BackgroundTransparency = 0.5
  52. Freeze.Position = UDim2.new(0, 90, 0, 230)
  53. Freeze.Size = UDim2.new(0, 155, 0, 50)
  54. Freeze.Font = Enum.Font.SciFi
  55. Freeze.FontSize = Enum.FontSize.Size18
  56. Freeze.Text = "Freeze All (Run Thaw One First)"
  57. Freeze.TextColor3 = Color3.new(0, 1, 1)
  58. Freeze.TextSize = 18
  59.  
  60. Kill.Name = "Kill"
  61. Kill.Parent = Frame
  62. Kill.BackgroundColor3 = Color3.new(0, 0, 0)
  63. Kill.BackgroundTransparency = 0.5
  64. Kill.Position = UDim2.new(0, 90, 0, 354)
  65. Kill.Size = UDim2.new(0, 155, 0, 50)
  66. Kill.Font = Enum.Font.SciFi
  67. Kill.FontSize = Enum.FontSize.Size18
  68. Kill.Text = "Kill Boss"
  69. Kill.TextColor3 = Color3.new(0, 1, 1)
  70. Kill.TextSize = 18
  71.  
  72.  
  73. Thaw.MouseButton1Click:connect(function()
  74.  
  75. wait(0.1)
  76. for _,plr in pairs(game.Players:GetPlayers()) do
  77. game.ReplicatedStorage.Hit:FireServer(plr)
  78. end
  79. end)
  80.  
  81. Kill.MouseButton1Click:connect(function()
  82. for i=1,300 do
  83. game.ReplicatedStorage.bossHit:FireServer()
  84. end
  85. end)
  86. Freeze.MouseButton1Click:connect(function()
  87. for _,plr in pairs(game.Players:GetPlayers()) do
  88. wait(1)
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = plr.Character.HumanoidRootPart.CFrame
  90. end
  91. end)
Add Comment
Please, Sign In to add comment