Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Paste Into A local script inside of starter Gui
- local ScreenGui = Instance.new("ScreenGui")
- local open = Instance.new("TextButton")
- local UICorner = Instance.new("UICorner")
- local Close = Instance.new("TextButton")
- local UICorner_2 = Instance.new("UICorner")
- local Shop = Instance.new("Frame")
- local UICorner_3 = Instance.new("UICorner")
- local Title = Instance.new("TextLabel")
- local Shop_2 = Instance.new("Frame")
- local ImageButton = Instance.new("ImageButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- open.Name = "open"
- open.Parent = ScreenGui
- open.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- open.BorderColor3 = Color3.fromRGB(0, 0, 0)
- open.BorderSizePixel = 0
- open.Position = UDim2.new(0, 0, 0.475034684, 0)
- open.Size = UDim2.new(0, 79, 0, 28)
- open.Font = Enum.Font.SourceSans
- open.Text = "Open"
- open.TextColor3 = Color3.fromRGB(255, 255, 255)
- open.TextSize = 26.000
- open.TextWrapped = true
- UICorner.Parent = open
- Close.Name = "Close"
- Close.Parent = ScreenGui
- Close.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Close.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Close.BorderSizePixel = 0
- Close.Position = UDim2.new(0, 0, 0.475034684, 0)
- Close.Size = UDim2.new(0, 79, 0, 28)
- Close.Visible = false
- Close.Font = Enum.Font.SourceSans
- Close.Text = "Close"
- Close.TextColor3 = Color3.fromRGB(255, 255, 255)
- Close.TextSize = 26.000
- Close.TextWrapped = true
- UICorner_2.Parent = Close
- Shop.Name = "Shop"
- Shop.Parent = ScreenGui
- Shop.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Shop.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Shop.BorderSizePixel = 0
- Shop.Position = UDim2.new(0.288149357, 0, 0.211511791, 0)
- Shop.Size = UDim2.new(0, 569, 0, 354)
- Shop.Visible = false
- UICorner_3.Parent = Shop
- Title.Name = "Title"
- Title.Parent = Shop
- Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Title.BackgroundTransparency = 1.000
- Title.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Title.BorderSizePixel = 0
- Title.Position = UDim2.new(0.323374331, 0, 0, 0)
- Title.Size = UDim2.new(0, 200, 0, 50)
- Title.Font = Enum.Font.SourceSans
- Title.Text = "Shop"
- Title.TextColor3 = Color3.fromRGB(0, 0, 0)
- Title.TextSize = 14.000
- Shop_2.Name = "Shop"
- Shop_2.Parent = Shop
- Shop_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Shop_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Shop_2.BorderSizePixel = 0
- Shop_2.Position = UDim2.new(-7.5623524e-05, 0, 0.143920988, 0)
- Shop_2.Size = UDim2.new(0, 569, 0, -2)
- ImageButton.Parent = Shop_2
- ImageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ImageButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
- ImageButton.BorderSizePixel = 0
- ImageButton.Position = UDim2.new(0, 0, 1.5, 0)
- ImageButton.Size = UDim2.new(0, 100, 0, 100)
- ImageButton.Image = "http://www.roblox.com/asset/?id=5381454270"
- -- Scripts:
- local function ONTJFN_fake_script() -- open.LocalScript
- local script = Instance.new('LocalScript', open)
- local Open = script.Parent
- local Close = script.Parent.Parent.Close
- local Shop = script.Parent.Parent.Shop
- Open.MouseButton1Down:Connect(function()
- Open.Visible = false
- Close.Visible = true
- Shop.Visible = true
- end)
- end
- coroutine.wrap(ONTJFN_fake_script)()
- local function GMKJSG_fake_script() -- Close.LocalScript
- local script = Instance.new('LocalScript', Close)
- local close = script.Parent
- local open = script.Parent.Parent.open
- local Shop = script.Parent.Parent.Shop
- close.MouseButton1Down:Connect(function()
- open.Visible = true
- close.Visible = false
- Shop.Visible = false
- end)
- end
- coroutine.wrap(GMKJSG_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement