Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local icebreakerv2 = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local title = Instance.new("TextLabel")
- local instantfreeze = Instance.new("TextButton")
- local coins = Instance.new("TextButton")
- local freevipchest = Instance.new("TextButton")
- --Properties:
- icebreakerv2.Name = "icebreakerv2"
- icebreakerv2.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = icebreakerv2
- Frame.Active = true
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.BackgroundTransparency = 0.5
- Frame.Draggable = true
- Frame.Position = UDim2.new(0, 341, 0, 41)
- Frame.Size = UDim2.new(0, 244, 0, 299)
- title.Name = "title"
- title.Parent = Frame
- title.BackgroundColor3 = Color3.new(0, 0, 0)
- title.BackgroundTransparency = 0.5
- title.Size = UDim2.new(0, 244, 0, 51)
- title.Font = Enum.Font.SciFi
- title.Text = "IceBreaker V2 Gui"
- title.TextColor3 = Color3.new(0, 1, 1)
- title.TextSize = 24
- title.TextWrapped = true
- instantfreeze.Name = "instantfreeze"
- instantfreeze.Parent = Frame
- instantfreeze.BackgroundColor3 = Color3.new(0, 0, 0)
- instantfreeze.BackgroundTransparency = 0.5
- instantfreeze.Position = UDim2.new(0.204918027, 0, 0.220735788, 0)
- instantfreeze.Size = UDim2.new(0, 144, 0, 51)
- instantfreeze.Font = Enum.Font.SciFi
- instantfreeze.Text = "Instant Freeze + Thaw"
- instantfreeze.TextColor3 = Color3.new(0, 1, 1)
- instantfreeze.TextSize = 18
- instantfreeze.TextWrapped = true
- coins.Name = "coins"
- coins.Parent = Frame
- coins.BackgroundColor3 = Color3.new(0, 0, 0)
- coins.BackgroundTransparency = 0.5
- coins.Position = UDim2.new(0.204918027, 0, 0.471571892, 0)
- coins.Size = UDim2.new(0, 144, 0, 51)
- coins.Font = Enum.Font.SciFi
- coins.Text = "Coins [Not Working]"
- coins.TextColor3 = Color3.new(0, 1, 1)
- coins.TextSize = 18
- coins.TextWrapped = true
- freevipchest.Name = "freevipchest"
- freevipchest.Parent = Frame
- freevipchest.BackgroundColor3 = Color3.new(0, 0, 0)
- freevipchest.BackgroundTransparency = 0.5
- freevipchest.Position = UDim2.new(0.203643739, 0, 0.732441545, 0)
- freevipchest.Size = UDim2.new(0, 144, 0, 51)
- freevipchest.Font = Enum.Font.SciFi
- freevipchest.Text = "Free Vip Chest [Need 2000 Coins To Purchase]"
- freevipchest.TextColor3 = Color3.new(0, 1, 1)
- freevipchest.TextSize = 18
- freevipchest.TextWrapped = true
- -- Scripts:
- instantfreeze.MouseButton1Click:connect(function()
- local Player = game.Players.LocalPlayer
- for _, player in pairs(game.Players:GetPlayers()) do
- Player.Character.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
- wait(0.2)
- game.ReplicatedStorage.Hit:FireServer(player)
- game.ReplicatedStorage.Hit:FireServer(player)
- game.ReplicatedStorage.Hit:FireServer(player)
- game.ReplicatedStorage.Hit:FireServer(player)
- end
- end)
- coins.MouseButton1Click:connect(function()
- while wait() do
- game.ReplicatedStorage.removeDebris:FireServer(30)
- end
- end)
- freevipchest.MouseButton1Click:connect(function()
- game.ReplicatedStorage.purchaseItem:FireServer("VIP", 1)
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement