Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local DoraGui = Instance.new("ScreenGui")
- local doraframe = Instance.new("Frame")
- local Frame = Instance.new("Frame")
- local doralabel = Instance.new("TextLabel")
- local dorabutton = Instance.new("TextButton")
- local doralabel1 = Instance.new("TextLabel")
- local openclose = Instance.new("TextButton")
- -- Properties
- DoraGui.Name = "DoraGui"
- DoraGui.Parent = game.StarterGui
- doraframe.Name = "doraframe"
- doraframe.Parent = DoraGui
- doraframe.BackgroundColor3 = Color3.new(0.454902, 0.454902, 0.454902)
- doraframe.BorderSizePixel = 3
- doraframe.Position = UDim2.new(0.424270064, 0, 0.288135588, 0)
- doraframe.Size = UDim2.new(0, 428, 0, 224)
- doraframe.Visible = false
- Frame.Parent = doraframe
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.Size = UDim2.new(0, 428, 0, 44)
- doralabel.Name = "doralabel"
- doralabel.Parent = doraframe
- doralabel.BackgroundColor3 = Color3.new(1, 1, 1)
- doralabel.Position = UDim2.new(0.2406542, 0, 0, 0)
- doralabel.Size = UDim2.new(0, 222, 0, 44)
- doralabel.Font = Enum.Font.SourceSans
- doralabel.Text = "Auto Farm HEIST"
- doralabel.TextColor3 = Color3.new(0, 0, 0)
- doralabel.TextSize = 14
- dorabutton.Name = "dorabutton"
- dorabutton.Parent = doraframe
- dorabutton.BackgroundColor3 = Color3.new(1, 1, 1)
- dorabutton.Position = UDim2.new(0.282710254, 0, 0.401785731, 0)
- dorabutton.Size = UDim2.new(0, 186, 0, 68)
- dorabutton.Font = Enum.Font.SourceSans
- dorabutton.Text = "Click!"
- dorabutton.TextColor3 = Color3.new(0, 0, 0)
- dorabutton.TextSize = 14
- doralabel1.Name = "doralabel1"
- doralabel1.Parent = doraframe
- doralabel1.BackgroundColor3 = Color3.new(0.0980392, 0.419608, 0.286275)
- doralabel1.BorderSizePixel = 2
- doralabel1.Position = UDim2.new(0.574766338, 0, 0.90625, 0)
- doralabel1.Size = UDim2.new(0, 182, 0, 21)
- doralabel1.Font = Enum.Font.SourceSans
- doralabel1.Text = "GUI Made By Chishiki Norikarin"
- doralabel1.TextColor3 = Color3.new(0, 0, 0)
- doralabel1.TextSize = 14
- openclose.Name = "openclose"
- openclose.Parent = DoraGui
- openclose.BackgroundColor3 = Color3.new(1, 1, 1)
- openclose.Position = UDim2.new(0.901459873, 0, 0.525423706, 0)
- openclose.Size = UDim2.new(0, 108, 0, 50)
- openclose.Font = Enum.Font.SourceSans
- openclose.Text = "Open"
- openclose.TextColor3 = Color3.new(0, 0, 0)
- openclose.TextSize = 14
- openclose.MouseButton1Click:conect(function()
- if openclose.Text == "Open" then
- doraframe.Visible = true
- openclose.Text = "Close"
- else
- doraframe.Visible = false
- openclose.Text = "Open"
- end
- end)
Add Comment
Please, Sign In to add comment