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 Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local fu = Instance.new("TextButton")
- local pain = Instance.new("TextButton")
- local Money = Instance.new("TextButton")
- local close = Instance.new("TextButton")
- local TextBox = Instance.new("TextBox")
- local GAMEPASS = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0.901961, 0.901961, 0.901961)
- Frame.BorderColor3 = Color3.new(0.901961, 0.901961, 0.901961)
- Frame.Position = UDim2.new(0.312945992, 0, 0.404809594, 0)
- Frame.Size = UDim2.new(0, 245, 0, 155)
- Frame.Active = true
- Frame.Draggable = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(0.654902, 0.654902, 0.654902)
- TextLabel.BorderColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- TextLabel.Size = UDim2.new(0, 245, 0, 32)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "DemonDevs"
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- fu.Name = "fu"
- fu.Parent = Frame
- fu.BackgroundColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- fu.BorderColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- fu.Position = UDim2.new(0.0703447014, 0, 0.242156982, 0)
- fu.Size = UDim2.new(0, 211, 0, 26)
- fu.Font = Enum.Font.SourceSans
- fu.Text = "furn gui"
- fu.TextColor3 = Color3.new(1, 1, 1)
- fu.TextScaled = true
- fu.TextSize = 14
- fu.TextWrapped = true
- fu.MouseButton1Click:connect(function()
- local ScreenGui = Instance.new("ScreenGui")
- local Holder = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local TitleDrop = Instance.new("TextLabel")
- local ScrollingFrame = Instance.new("ScrollingFrame")
- local Title2 = Instance.new("TextLabel")
- local Title2Drop = Instance.new("TextLabel")
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- Holder.Name = "Holder"
- Holder.Parent = ScreenGui
- Holder.Active = true
- Holder.AnchorPoint = Vector2.new(0, 0.5)
- Holder.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039)
- Holder.BorderSizePixel = 0
- Holder.Draggable = true
- Holder.Position = UDim2.new(0, 25, 0.5, 0)
- Holder.Size = UDim2.new(0, 150, 0, 290)
- Title.Name = "Title"
- Title.Parent = Holder
- Title.BackgroundColor3 = Color3.new(1, 1, 1)
- Title.BackgroundTransparency = 1
- Title.Size = UDim2.new(0, 150, 0, 10)
- Title.ZIndex = 2
- Title.Font = Enum.Font.SourceSansBold
- Title.FontSize = Enum.FontSize.Size14
- Title.Text = "ROCITIZEN ITEM"
- Title.TextColor3 = Color3.new(.1, 1, 1)
- Title.TextSize = 14
- Title.TextYAlignment = Enum.TextYAlignment.Top
- ScrollingFrame.Parent = Holder
- ScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
- ScrollingFrame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- ScrollingFrame.BorderSizePixel = 0
- ScrollingFrame.Position = UDim2.new(0.5, 0, 0, 155)
- ScrollingFrame.Size = UDim2.new(0, 140, 0, 250)
- ScrollingFrame.BottomImage = "rbxassetid://985424344"
- ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
- ScrollingFrame.MidImage = "rbxassetid://985424344"
- ScrollingFrame.ScrollBarThickness = 3
- ScrollingFrame.TopImage = "rbxassetid://985424344"
- Title2.Name = "Title2"
- Title2.Parent = Holder
- Title2.BackgroundColor3 = Color3.new(1, 1, 1)
- Title2.BackgroundTransparency = 1
- Title2.Position = UDim2.new(0, 0, 0, 10)
- Title2.Size = UDim2.new(0, 150, 0, 10)
- Title2.ZIndex = 2
- Title2.Font = Enum.Font.SourceSansBold
- Title2.FontSize = Enum.FontSize.Size14
- Title2.Text = "PLACE CHANGE GUI"
- Title2.TextColor3 = Color3.new(.1, 1, 1)
- Title2.TextSize = 14
- Title2.TextYAlignment = Enum.TextYAlignment.Top
- --main script--
- local frameitems = {
- }
- local gg = game.ReplicatedStorage.Furniture:GetChildren()
- for i = 1,#gg do
- table.insert(frameitems,gg[i].Name)
- end
- local frame = ScrollingFrame
- for i=1, #frameitems do
- local B = Instance.new("TextButton")
- local V = Instance.new("StringValue", B)
- V.Value = string.sub(frameitems[i], 7)
- B.Name = "B"
- B.Parent = frame
- B.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
- B.BorderSizePixel = 0
- B.Position = UDim2.new(0, 3, 0, (((i-1)*22)+(3*i)))
- B.Size = UDim2.new(0, 134, 0, 22)
- B.Font = Enum.Font.SourceSansBold
- B.FontSize = Enum.FontSize.Size14
- B.Text = frameitems[i]
- B.TextColor3 = Color3.new(.1, .5, .5)
- B.TextScaled = true
- B.TextSize = 20
- frame.CanvasSize = UDim2.new(0,0,0,(#frameitems*22+(i*3)+3))
- B.MouseButton1Down:connect(function()
- print(B.Text)
- game.Players.LocalPlayer.PlayerGui.MouseScript.FurniturePlacing.Value = game.ReplicatedStorage.Furniture:FindFirstChild(B.Text)
- end)
- end
- end)
- pain.Name = "pain"
- pain.Parent = Frame
- pain.BackgroundColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- pain.BorderColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- pain.Position = UDim2.new(0.0703447014, 0, 0.469527483, 0)
- pain.Size = UDim2.new(0, 211, 0, 26)
- pain.Font = Enum.Font.SourceSans
- pain.Text = "Painting gui"
- pain.TextColor3 = Color3.new(1, 1, 1)
- pain.TextScaled = true
- pain.TextSize = 14
- pain.TextWrapped = true
- pain.MouseButton1Click:connect(function()
- local ScreenGui = Instance.new("ScreenGui")
- local Holder = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local TitleDrop = Instance.new("TextLabel")
- local ScrollingFrame = Instance.new("ScrollingFrame")
- local Title2 = Instance.new("TextLabel")
- local Title2Drop = Instance.new("TextLabel")
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- Holder.Name = "Holder"
- Holder.Parent = ScreenGui
- Holder.Active = true
- Holder.AnchorPoint = Vector2.new(0, 0.5)
- Holder.BackgroundColor3 = Color3.new(0.298039, 0.298039, 0.298039)
- Holder.BorderSizePixel = 0
- Holder.Draggable = true
- Holder.Position = UDim2.new(0, 25, 0.5, 0)
- Holder.Size = UDim2.new(0, 150, 0, 290)
- Title.Name = "Title"
- Title.Parent = Holder
- Title.BackgroundColor3 = Color3.new(1, 1, 1)
- Title.BackgroundTransparency = 1
- Title.Size = UDim2.new(0, 150, 0, 10)
- Title.ZIndex = 2
- Title.Font = Enum.Font.SourceSansBold
- Title.FontSize = Enum.FontSize.Size14
- Title.Text = "ROCITIZEN ITEM"
- Title.TextColor3 = Color3.new(.1, 1, 1)
- Title.TextSize = 14
- Title.TextYAlignment = Enum.TextYAlignment.Top
- ScrollingFrame.Parent = Holder
- ScrollingFrame.AnchorPoint = Vector2.new(0.5, 0.5)
- ScrollingFrame.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- ScrollingFrame.BorderSizePixel = 0
- ScrollingFrame.Position = UDim2.new(0.5, 0, 0, 155)
- ScrollingFrame.Size = UDim2.new(0, 140, 0, 250)
- ScrollingFrame.BottomImage = "rbxassetid://985424344"
- ScrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0)
- ScrollingFrame.MidImage = "rbxassetid://985424344"
- ScrollingFrame.ScrollBarThickness = 3
- ScrollingFrame.TopImage = "rbxassetid://985424344"
- Title2.Name = "Title2"
- Title2.Parent = Holder
- Title2.BackgroundColor3 = Color3.new(1, 1, 1)
- Title2.BackgroundTransparency = 1
- Title2.Position = UDim2.new(0, 0, 0, 10)
- Title2.Size = UDim2.new(0, 150, 0, 10)
- Title2.ZIndex = 2
- Title2.Font = Enum.Font.SourceSansBold
- Title2.FontSize = Enum.FontSize.Size14
- Title2.Text = "PAINTING SPAWNER GUI"
- Title2.TextColor3 = Color3.new(.1, 1, 1)
- Title2.TextSize = 14
- Title2.TextYAlignment = Enum.TextYAlignment.Top
- --main script--
- local frameitems = {
- }
- local gg = game.ReplicatedStorage.PaintingCatalog:GetChildren()
- for i = 1,#gg do
- table.insert(frameitems,gg[i].Name)
- end
- local frame = ScrollingFrame
- for i=1, #frameitems do
- local B = Instance.new("TextButton")
- local V = Instance.new("StringValue", B)
- V.Value = string.sub(frameitems[i], 7)
- B.Name = "B"
- B.Parent = frame
- B.BackgroundColor3 = Color3.new(0.282353, 0.282353, 0.282353)
- B.BorderSizePixel = 0
- B.Position = UDim2.new(0, 3, 0, (((i-1)*22)+(3*i)))
- B.Size = UDim2.new(0, 134, 0, 22)
- B.Font = Enum.Font.SourceSansBold
- B.FontSize = Enum.FontSize.Size14
- B.Text = frameitems[i]
- B.TextColor3 = Color3.new(.1, .5, .5)
- B.TextScaled = true
- B.TextSize = 20
- frame.CanvasSize = UDim2.new(0,0,0,(#frameitems*22+(i*3)+3))
- B.MouseButton1Down:connect(function()
- print(B.Text)
- game.Players.LocalPlayer.PlayerGui.MouseScript.FurniturePlacing.Value = game.ReplicatedStorage.PaintingCatalog:FindFirstChild(B.Text)
- end)
- end
- end)
- Money.Name = "Money"
- Money.Parent = Frame
- Money.BackgroundColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- Money.BorderColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- Money.Position = UDim2.new(0.0703447014, 0, 0.713906765, 0)
- Money.Size = UDim2.new(0, 211, 0, 26)
- Money.Font = Enum.Font.SourceSans
- Money.Text = "Money"
- Money.TextColor3 = Color3.new(1, 1, 1)
- Money.TextScaled = true
- Money.TextSize = 14
- Money.TextWrapped = true
- Money.MouseButton1Click:connect(function()
- game.Players.LocalPlayer.ChangeMoney:Fire(9999999999999999999)
- end)
- close.Name = "close"
- close.Parent = Frame
- close.BackgroundColor3 = Color3.new(0.654902, 0.654902, 0.654902)
- close.BorderColor3 = Color3.new(0.654902, 0.654902, 0.654902)
- close.BorderSizePixel = 0
- close.Position = UDim2.new(0.796875358, 0, 0.0179145578, 0)
- close.Size = UDim2.new(0, 49, 0, 26)
- close.Font = Enum.Font.SourceSans
- close.Text = "X"
- close.TextColor3 = Color3.new(0, 0, 0)
- close.TextScaled = true
- close.TextSize = 14
- close.TextWrapped = true
- close.MouseButton1Click:connect(function()
- Frame.Visible = false
- end)
- TextBox.Parent = Frame
- TextBox.BackgroundColor3 = Color3.new(0.901961, 0.901961, 0.901961)
- TextBox.BorderColor3 = Color3.new(0.901961, 0.901961, 0.901961)
- TextBox.BorderSizePixel = 0
- TextBox.Position = UDim2.new(0, 0, 0.930009782, 0)
- TextBox.Size = UDim2.new(0, 183, 0, 12)
- TextBox.Font = Enum.Font.SourceSans
- TextBox.PlaceholderText = "discord.gg/QskDpWg"
- TextBox.Text = "discord.gg/QskDpWg"
- TextBox.TextColor3 = Color3.new(0, 0, 0)
- TextBox.TextSize = 14
- GAMEPASS.Name = "GAMEPASS"
- GAMEPASS.Parent = Frame
- GAMEPASS.BackgroundColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- GAMEPASS.BorderColor3 = Color3.new(0.560784, 0.560784, 0.560784)
- GAMEPASS.Position = UDim2.new(0.686671138, 0, 0.930009782, 0)
- GAMEPASS.Size = UDim2.new(0, 76, 0, 12)
- GAMEPASS.Font = Enum.Font.SourceSans
- GAMEPASS.Text = "GamePass"
- GAMEPASS.TextColor3 = Color3.new(1, 1, 1)
- GAMEPASS.TextScaled = true
- GAMEPASS.TextSize = 14
- GAMEPASS.TextWrapped = true
- GAMEPASS.MouseButton1Click:connect(function()
- --Important
- local plr = game.Players.LocalPlayer
- local gui = plr.PlayerGui
- local gamevalue = gui.GameValues
- local maingui = gui.Main
- --Customize Furniture tool
- gamevalue.OwnsCustomizeTool.Value = true
- --Catalog access
- gamevalue.OwnsCatalogAccess.Value = true
- --Open rotune
- maingui.Phone.Screen.MetaFrame.Apps1.RoTunes.Visible = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement