Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made By BluezModZ
- --https://BluezModZ.weebly.com/
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local exit = Instance.new("TextButton")
- local script1 = Instance.new("TextButton")
- local script2 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.Position = UDim2.new(0.170234457, 0, 0.260504216, 0)
- Frame.Size = UDim2.new(0, 669, 0, 320)
- Frame.Active = true
- Frame.Draggable = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
- TextLabel.Size = UDim2.new(0, 669, 0, 50)
- TextLabel.Text = "KIO GUI - Made By BluezModZ"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextSize = 14.000
- exit.Name = "exit"
- exit.Parent = TextLabel
- exit.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
- exit.BorderColor3 = Color3.fromRGB(27, 42, 53)
- exit.Position = UDim2.new(0.959641278, 0, 0, 0)
- exit.Size = UDim2.new(0, 27, 0, 23)
- exit.Font = Enum.Font.SourceSans
- exit.Text = "X"
- exit.TextColor3 = Color3.fromRGB(0, 0, 0)
- exit.TextSize = 14.000
- exit.MouseButton1Down:connect(function()
- exit.Visible = false
- end)
- script1.Name = "script1"
- script1.Parent = Frame
- script1.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
- script1.Position = UDim2.new(0.0254110619, 0, 0.25, 0)
- script1.Size = UDim2.new(0, 200, 0, 50)
- script1.Font = Enum.Font.SourceSans
- script1.Text = "Print BluezModZ"
- script1.TextColor3 = Color3.fromRGB(0, 0, 0)
- script1.TextSize = 14.000
- script1.MouseButton1Down:connect(function()
- print("Made By BluezModZ")
- end)
- script2.Name = "script2"
- script2.Parent = Frame
- script2.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
- script2.Position = UDim2.new(0.669656217, 0, 0.25, 0)
- script2.Size = UDim2.new(0, 200, 0, 50)
- script2.Font = Enum.Font.SourceSans
- script2.Text = "Print Date"
- script2.TextColor3 = Color3.fromRGB(0, 0, 0)
- script2.TextSize = 14.000
- script2.MouseButton1Down:connect(function()
- print(os.date('Date: %m/%d/%Y'))
- end)
Add Comment
Please, Sign In to add comment