Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function CreateInstance(cls,props)
- local inst = Instance.new(cls)
- for i,v in pairs(props) do
- inst[i] = v
- end
- return inst
- end
- local ScreenGui = CreateInstance('ScreenGui',{DisplayOrder=0,Enabled=true,ResetOnSpawn=true,Name='ScreenGui', Parent=game.CoreGui})
- local Frame = CreateInstance('Frame',{Style=Enum.FrameStyle.Custom,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0.760784, 0.298039, 0.145098),BackgroundTransparency=0,BorderColor3=Color3.new(0.690196, 0.388235, 0.235294),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.0682976544, 0, 0.121804513, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 208, 0, 207),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name = 'Frame',Parent = ScreenGui})
- local GNO = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='TP to Printer (No Owner)',TextColor3=Color3.new(0, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.072115384, 0, 0.144927531, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 178, 0, 39),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='GNO',Parent = Frame})
- local GO = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='TP to Printer (With Owner)',TextColor3=Color3.new(0, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.072115384, 0, 0.386473417, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 178, 0, 61),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='GO',Parent = Frame})
- local BTools = CreateInstance('TextButton',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='Btools to go through walls',TextColor3=Color3.new(0, 0, 0),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,AutoButtonColor=true,Modal=false,Selected=false,Style=Enum.ButtonStyle.Custom,Active=true,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(1, 1, 1),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0.072115384, 0, 0.739130437, 0),Rotation=0,Selectable=true,Size=UDim2.new(0, 178, 0, 43),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='BTools',Parent = Frame})
- local TextLabel = CreateInstance('TextLabel',{Font=Enum.Font.SourceSans,FontSize=Enum.FontSize.Size14,Text='ESDRP Gui By BigDaddy#1707',TextColor3=Color3.new(1, 1, 1),TextScaled=false,TextSize=14,TextStrokeColor3=Color3.new(0, 0, 0),TextStrokeTransparency=1,TextTransparency=0,TextWrapped=false,TextXAlignment=Enum.TextXAlignment.Center,TextYAlignment=Enum.TextYAlignment.Center,Active=false,AnchorPoint=Vector2.new(0, 0),BackgroundColor3=Color3.new(0, 0, 0),BackgroundTransparency=0,BorderColor3=Color3.new(0.105882, 0.164706, 0.207843),BorderSizePixel=1,ClipsDescendants=false,Draggable=false,Position=UDim2.new(0, 0, 0, 0),Rotation=0,Selectable=false,Size=UDim2.new(0, 208, 0, 18),SizeConstraint=Enum.SizeConstraint.RelativeXY,Visible=true,ZIndex=1,Name='TextLabel',Parent = Frame})
- Frame.Active = true
- Frame.Draggable = true
- game:GetService("UserInputService").InputBegan:connect(onKeyPress)
- GNO.MouseButton1Click:Connect(function()
- local UnOwnedPrintersOnly = true
- 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)
- GO.MouseButton1Click:Connect(function()
- local UnOwnedPrintersOnly = false
- 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)
- BTools.MouseButton1Click:Connect(function()
- local tool1 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
- local tool2 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
- local tool3 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
- local tool4 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
- local tool5 = Instance.new("HopperBin",game.Players.LocalPlayer.Backpack)
- tool1.BinType = "Clone"
- tool2.BinType = "GameTool"
- tool3.BinType = "Hammer"
- tool4.BinType = "Script"
- tool5.BinType = "Grab"
- end)
Add Comment
Please, Sign In to add comment