Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local Frame = Instance.new("Frame")
- local TPFruit = Instance.new("TextButton")
- local Bloxpiece = Instance.new("TextLabel")
- local TPChest = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- Frame.Parent = game.StarterGui["Beta Bloxpiece"]
- Frame.BackgroundColor3 = Color3.new(0.168627, 0.168627, 0.168627)
- Frame.Position = UDim2.new(0.833898842, 0, 0.603719592, 0)
- Frame.Size = UDim2.new(0, 198, 0, 271)
- TPFruit.Name = "TP Fruit"
- TPFruit.Parent = Frame
- TPFruit.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
- TPFruit.BorderSizePixel = 0
- TPFruit.Position = UDim2.new(0.0808080807, 0, 0.483394831, 0)
- TPFruit.Size = UDim2.new(0, 165, 0, 50)
- TPFruit.Font = Enum.Font.Cartoon
- TPFruit.Text = "Tp Fruit"
- TPFruit.TextColor3 = Color3.new(1, 1, 1)
- TPFruit.TextScaled = true
- TPFruit.TextSize = 14
- TPFruit.TextWrapped = true
- Bloxpiece.Name = "Bloxpiece"
- Bloxpiece.Parent = Frame
- Bloxpiece.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
- Bloxpiece.BackgroundTransparency = 1
- Bloxpiece.Size = UDim2.new(0, 198, 0, 50)
- Bloxpiece.Font = Enum.Font.Cartoon
- Bloxpiece.Text = "Blox Piece"
- Bloxpiece.TextColor3 = Color3.new(1, 1, 1)
- Bloxpiece.TextScaled = true
- Bloxpiece.TextSize = 14
- Bloxpiece.TextWrapped = true
- TPChest.Name = "TP Chest"
- TPChest.Parent = Frame
- TPChest.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
- TPChest.BorderSizePixel = 0
- TPChest.Position = UDim2.new(0.0808080807, 0, 0.247232467, 0)
- TPChest.Size = UDim2.new(0, 165, 0, 50)
- TPChest.Font = Enum.Font.Cartoon
- TPChest.Text = "Tp Chest"
- TPChest.TextColor3 = Color3.new(1, 1, 1)
- TPChest.TextScaled = true
- TPChest.TextSize = 14
- TPChest.TextWrapped = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0.313726, 0.313726, 0.313726)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Position = UDim2.new(-0.00306637958, 0, 0.874602079, 0)
- TextLabel.Size = UDim2.new(0, 198, 0, 33)
- TextLabel.Font = Enum.Font.Cartoon
- TextLabel.Text = "BadBoyX2"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- -- Scripts:
- TPChest.MouseButton1Down:connect(function()
- local OriginalPos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
- local a = game.Workspace:GetChildren()
- for i=1,#a do
- if a[i].Name:lower():match("chest") then
- b = false
- repeat wait()
- if a[i].Parent~=game.Workspace then
- b = true
- else
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = a[i].CFrame
- end
- until b == true
- end
- end
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = OriginalPos
- end)
- TPFruit.MouseButton1Down:connect(function()
- local a = game.Players.LocalPlayer.Character.HumanoidRootPart
- local b = a.CFrame
- for i,v in pairs(game.Workspace["_WorldOrigin"]:GetDescendants()) do
- if v.Name == "Fruit" and v.Parent:IsA("Model") and v.Parent.Name == "Model" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
- wait(0.1)
- end
- end
- a.CFrame = b
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement