draxe55

brothertest

Jul 8th, 2021
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 KB | None | 0 0
  1. local timern = os.time()
  2. game.StarterGui:SetCore("SendNotification", {
  3. Title = "Crystal Central Key Test";
  4. Text = "Hello, this challenge is not hard at any means as long as you know lua. Heres a hint: im using tables. You have "..timern;
  5. Duration = 300;
  6. })
  7.  
  8. local ScreenGui = Instance.new("ScreenGui")
  9. local UWU = Instance.new("Frame")
  10. local Key = Instance.new("TextBox")
  11. local CrystalCentral = Instance.new("TextLabel")
  12.  
  13. -- Tables
  14.  
  15. local keys = {
  16. "hud3hifho3f3hof3f",
  17. "h3f8uo83uo3j9iio3",
  18. "ih8o9u380ojp9wjod"
  19. }
  20.  
  21. --Properties:
  22.  
  23. ScreenGui.Parent = game.CoreGui
  24.  
  25. UWU.Name = "UWU"
  26. UWU.Parent = ScreenGui
  27. UWU.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  28. UWU.Size = UDim2.new(0, 1363, 0, 503)
  29.  
  30. Key.Name = "Key"
  31. Key.Parent = UWU
  32. Key.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
  33. Key.BorderSizePixel = 0
  34. Key.Position = UDim2.new(0.146735147, 0, 0.526838958, 0)
  35. Key.Size = UDim2.new(0, 339, 0, 50)
  36. Key.Font = Enum.Font.SourceSans
  37. Key.PlaceholderText = "Key Here"
  38. Key.Text = ""
  39. Key.TextColor3 = Color3.fromRGB(255, 255, 255)
  40. Key.TextScaled = true
  41. Key.TextSize = 14.000
  42. Key.TextWrapped = true
  43.  
  44. if Key.Text == keys then
  45. local fuck6ex = game.Players.LocalPlayer
  46. mouse = fuck6ex:GetMouse()
  47. mouse.KeyDown:connect(function(key)
  48. if Key.Text == keys and key == "Enter" then
  49. print('Congrats, you have passed the test dm me on discord with this printed message or notifcation.')
  50. game.StarterGui:SetCore("SendNotification", {
  51. Title = "Crystal Central Key Test";
  52. Text = "You have passed the test! Dm crystal on discord with a picture of this: ";
  53. Duration = 300;
  54. })
  55. end
  56.  
  57. if game.CoreGui:FindFirstChild("Discord") and Key.Text >= keys then
  58. print('detected bbq')
  59. game.StarterGui:SetCore("SendNotification", {
  60. Title = "Crystal Central Key Test";
  61. Text = "Detected ;)";
  62. Duration = 300;
  63. })
  64. wait(60)
  65. game:GetService("Players").LocalPlayer:Kick('UWU detected u bbq')
  66. end
  67. end)
  68. print('whitelisted, you are a genius!')
  69. end
  70.  
  71. CrystalCentral.Name = "CrystalCentral"
  72. CrystalCentral.Parent = ScreenGui
  73. CrystalCentral.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  74. CrystalCentral.BorderSizePixel = 0
  75. CrystalCentral.Position = UDim2.new(0.05810811, 0, 0.264413506, 0)
  76. CrystalCentral.Size = UDim2.new(0, 653, 0, 50)
  77. CrystalCentral.Font = Enum.Font.SourceSans
  78. CrystalCentral.Text = "Crystal Centrals Test Whitelist"
  79. CrystalCentral.TextColor3 = Color3.fromRGB(255, 255, 255)
  80. CrystalCentral.TextScaled = true
  81. CrystalCentral.TextSize = 14.000
  82. CrystalCentral.TextWrapped = true
  83.  
  84. local function event()
  85. print("Hour Started")
  86. end
  87.  
  88. local EventStart = 1625702400
  89. local EventStop = 1625788799
  90.  
  91. local function realtime()
  92. while wait() do
  93. local currentTime = os.time()
  94.  
  95. if currentTime >= EventStop then
  96. game.Players.LocalPlayer:Kick("Trail End")
  97. end
  98. end
  99. end
  100.  
  101.  
  102.  
  103. while wait(1) do
  104. realtime()
  105. local currentTime = os.time()
  106.  
  107. if currentTime >= EventStop then
  108. game.Players.LocalPlayer:Kick("Challenge over. (Challenge was 85% hard. I appricate your effort!")
  109. break
  110. end
  111.  
  112. if currentTime >= EventStart then
  113. event()
  114. break
  115. end
  116. end
Advertisement
Add Comment
Please, Sign In to add comment