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 MainGUI = Instance.new("Frame")
- local execute = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local close = Instance.new("TextButton")
- local OpenGUI = Instance.new("Frame")
- local open = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- MainGUI.Active = true -- draggable juu
- MainGUI.Draggable = true
- MainGUI.Name = "MainGUI"
- MainGUI.Parent = ScreenGui
- MainGUI.BackgroundColor3 = Color3.new(1, 1, 1)
- MainGUI.Position = UDim2.new(0.485572278, 0, 0.175675675, 0)
- MainGUI.Size = UDim2.new(0, 294, 0, 401)
- MainGUI.Visible = false
- execute.Name = "execute"
- execute.Parent = MainGUI
- execute.BackgroundColor3 = Color3.new(1, 1, 1)
- execute.BorderSizePixel = 2
- execute.Position = UDim2.new(0.157054126, 0, 0.371571064, 0)
- execute.Size = UDim2.new(0, 200, 0, 50)
- execute.Font = Enum.Font.SourceSans
- execute.TextColor3 = Color3.new(0, 0, 0)
- execute.TextScaled = true
- execute.TextSize = 14
- execute.TextWrapped = true
- execute.MouseButton1Click:connect(function()--SCRIPTI TÄHÄN
- print("juupajuu")--enter script here
- end)
- TextLabel.Parent = MainGUI
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BorderSizePixel = 0
- TextLabel.Position = UDim2.new(0.214877188, 0, 0.0149625931, 0)
- TextLabel.Size = UDim2.new(0, 166, 0, 50)
- TextLabel.Text = "grannygui"
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14
- TextLabel.TextWrapped = true
- close.Name = "close"
- close.Parent = MainGUI
- close.BackgroundColor3 = Color3.new(1, 1, 1)
- close.BorderSizePixel = 0
- close.Position = UDim2.new(0.888346553, 0, 0, 0)
- close.Size = UDim2.new(0, 32, 0, 32)
- 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() --guin sulkemispainike
- MainGUI.Visible = false -- maingui pois
- OpenGUI.Visible = true -- opengui päälle
- end)
- OpenGUI.Name = "OpenGUI"
- OpenGUI.Parent = ScreenGui
- OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
- OpenGUI.Position = UDim2.new(0.182993218, 0, 0.437346518, 0)
- OpenGUI.Size = UDim2.new(0, 140, 0, 50)
- OpenGUI.Active = true -- draggable juu
- OpenGUI.Draggable = true
- open.Name = "open"
- open.Parent = OpenGUI
- open.BackgroundColor3 = Color3.new(1, 1, 1)
- open.BorderSizePixel = 0
- open.Position = UDim2.new(0.114647269, 0, 0.228560209, 0)
- open.Size = UDim2.new(0, 106, 0, 27)
- open.Font = Enum.Font.SciFi
- open.Text = "Open GUI"
- open.TextColor3 = Color3.new(0, 0, 0)
- open.TextScaled = true
- open.TextSize = 14
- open.TextWrapped = true
- open.MouseButton1Click:connect(function()
- MainGUI.Visible = true
- OpenGUI.Visible = false
- end)
- print("toimii epic")
- -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement