BluezModZ

Roblox KIO Test Script

Jan 3rd, 2022 (edited)
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.17 KB | None | 0 0
  1. --Made By BluezModZ
  2. --https://BluezModZ.weebly.com/
  3.  
  4.  
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Frame = Instance.new("Frame")
  7. local TextLabel = Instance.new("TextLabel")
  8. local exit = Instance.new("TextButton")
  9. local script1 = Instance.new("TextButton")
  10. local script2 = Instance.new("TextButton")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. Frame.Parent = ScreenGui
  18. Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  19. Frame.Position = UDim2.new(0.170234457, 0, 0.260504216, 0)
  20. Frame.Size = UDim2.new(0, 669, 0, 320)
  21. Frame.Active = true
  22. Frame.Draggable = true
  23.  
  24.  
  25. TextLabel.Parent = Frame
  26. TextLabel.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
  27. TextLabel.Size = UDim2.new(0, 669, 0, 50)
  28. TextLabel.Text = "KIO GUI - Made By BluezModZ"
  29. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  30. TextLabel.TextSize = 14.000
  31.  
  32.  
  33. exit.Name = "exit"
  34. exit.Parent = TextLabel
  35. exit.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
  36. exit.BorderColor3 = Color3.fromRGB(27, 42, 53)
  37. exit.Position = UDim2.new(0.959641278, 0, 0, 0)
  38. exit.Size = UDim2.new(0, 27, 0, 23)
  39. exit.Font = Enum.Font.SourceSans
  40. exit.Text = "X"
  41. exit.TextColor3 = Color3.fromRGB(0, 0, 0)
  42. exit.TextSize = 14.000
  43. exit.MouseButton1Down:connect(function()
  44. exit.Visible = false
  45. end)
  46.  
  47.  
  48. script1.Name = "script1"
  49. script1.Parent = Frame
  50. script1.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
  51. script1.Position = UDim2.new(0.0254110619, 0, 0.25, 0)
  52. script1.Size = UDim2.new(0, 200, 0, 50)
  53. script1.Font = Enum.Font.SourceSans
  54. script1.Text = "Print BluezModZ"
  55. script1.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. script1.TextSize = 14.000
  57. script1.MouseButton1Down:connect(function()
  58. print("Made By BluezModZ")
  59. end)
  60.  
  61. script2.Name = "script2"
  62. script2.Parent = Frame
  63. script2.BackgroundColor3 = Color3.fromRGB(42, 37, 185)
  64. script2.Position = UDim2.new(0.669656217, 0, 0.25, 0)
  65. script2.Size = UDim2.new(0, 200, 0, 50)
  66. script2.Font = Enum.Font.SourceSans
  67. script2.Text = "Print Date"
  68. script2.TextColor3 = Color3.fromRGB(0, 0, 0)
  69. script2.TextSize = 14.000
  70. script2.MouseButton1Down:connect(function()
  71. print(os.date('Date: %m/%d/%Y'))
  72. end)
Add Comment
Please, Sign In to add comment