Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell Infortality.
- -- Version: 2.82
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local ur = Instance.new("Frame")
- local top = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextButton_2 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ur.Name = "ur"
- ur.Parent = ScreenGui
- ur.Active = true
- ur.BackgroundColor3 = Color3.new(0.203922, 0.203922, 0.203922)
- ur.BorderSizePixel = 0
- ur.Position = UDim2.new(0.109008327, 0, 0.741358757, 0)
- ur.Size = UDim2.new(0, 244, 0, 178)
- top.Name = "top"
- top.Parent = ur
- top.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
- top.BorderSizePixel = 0
- top.Position = UDim2.new(-0.00164741278, 0, -0.000214278698, 0)
- top.Size = UDim2.new(0, 244, 0, 31)
- TextButton.Parent = top
- TextButton.BackgroundColor3 = Color3.new(1, 0, 0)
- TextButton.BorderSizePixel = 0
- TextButton.Position = UDim2.new(0.905737698, 0, 0, 0)
- TextButton.Size = UDim2.new(0, 23, 0, 20)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "X"
- TextButton.TextColor3 = Color3.new(1, 1, 1)
- TextButton.TextScaled = true
- TextButton.TextSize = 14
- TextButton.TextWrapped = true
- TextLabel.Parent = top
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Position = UDim2.new(0.13934426, 0, 0, 0)
- TextLabel.Size = UDim2.new(0, 187, 0, 31)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Electric State"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 20
- TextButton_2.Parent = ur
- TextButton_2.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
- TextButton_2.Position = UDim2.new(0.225409836, 0, 0.398876399, 0)
- TextButton_2.Size = UDim2.new(0, 145, 0, 35)
- TextButton_2.Font = Enum.Font.Code
- TextButton_2.Text = "Teleport to Printer"
- TextButton_2.TextColor3 = Color3.new(1, 1, 1)
- TextButton_2.TextSize = 14
- -- Scripts:
- function SCRIPT_ZCBB88_FAKESCRIPT() -- TextButton.Script
- getfenv().script = Instance.new('Script', TextButton)
- script.Parent.MouseButton1Click:Connect(function()
- ur.Visible = false
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_ZCBB88_FAKESCRIPT))
- function SCRIPT_HMHL76_FAKESCRIPT() -- ur.Script
- getfenv().script = Instance.new('Script', ur)
- ur.Draggable = true
- end
- coroutine.resume(coroutine.create(SCRIPT_HMHL76_FAKESCRIPT))
- function SCRIPT_PNUY81_FAKESCRIPT() -- TextButton_2.Script
- getfenv().script = Instance.new('Script', TextButton_2)
- function clicked()
- --
- print("Made By Lagx#2413")
- local UnOwnedPrintersOnly = false -- Set to false to get printers that have an owner.
- --
- local Chil = workspace.MoneyPrinters:GetDescendants()
- for i,v in pairs(Chil) do
- if v and v.ClassName == "StringValue" and v.Name == "Int2" then
- v.Parent:Destroy()
- end
- end
- local PP = workspace.MoneyPrinters:GetDescendants()
- for i,v in pairs(PP) do
- if UnOwnedPrintersOnly == true then
- if v and v.ClassName == "Part" and v.Parent.Int.Money.Value ~= 0 and v.Parent.TrueOwner.Value == nil then
- print("Teleporting to an unowned printer!")
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
- end
- else
- if v and v.ClassName == "Part" and v.Parent.Int.Money.Value ~= 0 and v.Parent.TrueOwner.Value ~= nil then
- print("Teleporting to an owned printer!")
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.Position)
- end
- end
- end
- end
- script.Parent.MouseButton1Click:connect(clicked)
- end
- coroutine.resume(coroutine.create(SCRIPT_PNUY81_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement