Advertisement
1x11337

IceBreaker V2 Gui

Aug 25th, 2018
8,447
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local icebreakerv2 = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local title = Instance.new("TextLabel")
  7. local instantfreeze = Instance.new("TextButton")
  8. local coins = Instance.new("TextButton")
  9. local freevipchest = Instance.new("TextButton")
  10. --Properties:
  11. icebreakerv2.Name = "icebreakerv2"
  12. icebreakerv2.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13.  
  14. Frame.Parent = icebreakerv2
  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, 244, 0, 299)
  21.  
  22. title.Name = "title"
  23. title.Parent = Frame
  24. title.BackgroundColor3 = Color3.new(0, 0, 0)
  25. title.BackgroundTransparency = 0.5
  26. title.Size = UDim2.new(0, 244, 0, 51)
  27. title.Font = Enum.Font.SciFi
  28. title.Text = "IceBreaker V2 Gui"
  29. title.TextColor3 = Color3.new(0, 1, 1)
  30. title.TextSize = 24
  31. title.TextWrapped = true
  32.  
  33. instantfreeze.Name = "instantfreeze"
  34. instantfreeze.Parent = Frame
  35. instantfreeze.BackgroundColor3 = Color3.new(0, 0, 0)
  36. instantfreeze.BackgroundTransparency = 0.5
  37. instantfreeze.Position = UDim2.new(0.204918027, 0, 0.220735788, 0)
  38. instantfreeze.Size = UDim2.new(0, 144, 0, 51)
  39. instantfreeze.Font = Enum.Font.SciFi
  40. instantfreeze.Text = "Instant Freeze + Thaw"
  41. instantfreeze.TextColor3 = Color3.new(0, 1, 1)
  42. instantfreeze.TextSize = 18
  43. instantfreeze.TextWrapped = true
  44.  
  45. coins.Name = "coins"
  46. coins.Parent = Frame
  47. coins.BackgroundColor3 = Color3.new(0, 0, 0)
  48. coins.BackgroundTransparency = 0.5
  49. coins.Position = UDim2.new(0.204918027, 0, 0.471571892, 0)
  50. coins.Size = UDim2.new(0, 144, 0, 51)
  51. coins.Font = Enum.Font.SciFi
  52. coins.Text = "Coins [Not Working]"
  53. coins.TextColor3 = Color3.new(0, 1, 1)
  54. coins.TextSize = 18
  55. coins.TextWrapped = true
  56.  
  57. freevipchest.Name = "freevipchest"
  58. freevipchest.Parent = Frame
  59. freevipchest.BackgroundColor3 = Color3.new(0, 0, 0)
  60. freevipchest.BackgroundTransparency = 0.5
  61. freevipchest.Position = UDim2.new(0.203643739, 0, 0.732441545, 0)
  62. freevipchest.Size = UDim2.new(0, 144, 0, 51)
  63. freevipchest.Font = Enum.Font.SciFi
  64. freevipchest.Text = "Free Vip Chest [Need 2000 Coins To Purchase]"
  65. freevipchest.TextColor3 = Color3.new(0, 1, 1)
  66. freevipchest.TextSize = 18
  67. freevipchest.TextWrapped = true
  68. -- Scripts:
  69. instantfreeze.MouseButton1Click:connect(function()
  70. local Player = game.Players.LocalPlayer
  71. for _, player in pairs(game.Players:GetPlayers()) do
  72.     Player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
  73.     wait(0.2)
  74.     game.ReplicatedStorage.Hit:FireServer(player)
  75.     game.ReplicatedStorage.Hit:FireServer(player)
  76.     game.ReplicatedStorage.Hit:FireServer(player)
  77.     game.ReplicatedStorage.Hit:FireServer(player)
  78. end
  79. end)
  80.  
  81. coins.MouseButton1Click:connect(function()
  82. while wait() do
  83.  
  84. game.ReplicatedStorage.removeDebris:FireServer(30)
  85.  
  86. end
  87. end)
  88.  
  89. freevipchest.MouseButton1Click:connect(function()
  90. game.ReplicatedStorage.purchaseItem:FireServer("VIP", 1)
  91. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement