Zuklim65

Udk

Jun 28th, 2025
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. -- Obfuscated key using ASCII
  2. local correctKey = string.char(115, 99, 114, 105, 112, 116, 115, 99, 97, 115, 101, 114)
  3.  
  4. -- Create ScreenGui
  5. local gui = Instance.new("ScreenGui")
  6. gui.Name = "KeyGui"
  7. gui.ResetOnSpawn = false
  8. gui.Parent = game:GetService("CoreGui")
  9.  
  10. -- Main Frame
  11. local frame = Instance.new("Frame")
  12. frame.Size = UDim2.new(0, 300, 0, 150)
  13. frame.Position = UDim2.new(0.5, -150, 0.5, -75)
  14. frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  15. frame.BorderSizePixel = 0
  16. frame.Parent = gui
  17.  
  18. -- Title
  19. local title = Instance.new("TextLabel")
  20. title.Text = "Enter Access Key"
  21. title.Font = Enum.Font.SourceSansBold
  22. title.TextSize = 20
  23. title.Size = UDim2.new(1, 0, 0, 40)
  24. title.TextColor3 = Color3.new(1, 1, 1)
  25. title.BackgroundTransparency = 1
  26. title.Parent = frame
  27.  
  28. -- TextBox
  29. local box = Instance.new("TextBox")
  30. box.PlaceholderText = "Enter key here..."
  31. box.Font = Enum.Font.SourceSans
  32. box.TextSize = 18
  33. box.Size = UDim2.new(0.9, 0, 0, 35)
  34. box.Position = UDim2.new(0.05, 0, 0.45, 0)
  35. box.TextColor3 = Color3.new(1, 1, 1)
  36. box.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  37. box.BorderSizePixel = 0
  38. box.Parent = frame
  39.  
  40. -- Submit Button
  41. local submit = Instance.new("TextButton")
  42. submit.Text = "Submit"
  43. submit.Font = Enum.Font.SourceSansBold
  44. submit.TextSize = 18
  45. submit.Size = UDim2.new(0.9, 0, 0, 35)
  46. submit.Position = UDim2.new(0.05, 0, 0.75, 0)
  47. submit.TextColor3 = Color3.new(1, 1, 1)
  48. submit.BackgroundColor3 = Color3.fromRGB(60, 120, 255)
  49. submit.BorderSizePixel = 0
  50. submit.Parent = frame
  51.  
  52. -- Notification
  53. local notif = Instance.new("TextLabel")
  54. notif.Size = UDim2.new(1, 0, 0, 20)
  55. notif.Position = UDim2.new(0, 0, 1, -20)
  56. notif.Text = ""
  57. notif.Font = Enum.Font.SourceSans
  58. notif.TextSize = 16
  59. notif.TextColor3 = Color3.fromRGB(255, 80, 80)
  60. notif.BackgroundTransparency = 1
  61. notif.Parent = frame
  62.  
  63. -- Key Check
  64. submit.MouseButton1Click:Connect(function()
  65. if box.Text == correctKey then
  66. notif.Text = "Access granted."
  67. task.wait(0.5)
  68. gui:Destroy()
  69. loadstring(game:HttpGet("https://raw.githubusercontent.com/IdkRandomUsernameok/PublicAssets/refs/heads/main/Releases/MUI.lua"))()
  70. else
  71. notif.Text = "Wrong key."
  72. end
  73. end)
Advertisement
Add Comment
Please, Sign In to add comment