Lafyv23431

Untitled

Mar 24th, 2026 (edited)
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. local correctKey = "305511"
  2.  
  3. local player = game.Players.LocalPlayer
  4.  
  5. -- واجهة بسيطة تطلب مفتاح
  6. local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
  7. local Frame = Instance.new("Frame", ScreenGui)
  8. Frame.Size = UDim2.new(0, 300, 0, 150)
  9. Frame.Position = UDim2.new(0.5, -150, 0.5, -75)
  10.  
  11. local TextBox = Instance.new("TextBox", Frame)
  12. TextBox.Size = UDim2.new(1, -20, 0, 40)
  13. TextBox.Position = UDim2.new(0, 10, 0, 20)
  14. TextBox.PlaceholderText = "Enter Key..."
  15.  
  16. local Button = Instance.new("TextButton", Frame)
  17. Button.Size = UDim2.new(1, -20, 0, 40)
  18. Button.Position = UDim2.new(0, 10, 0, 80)
  19. Button.Text = "Check Key"
  20.  
  21. Button.MouseButton1Click:Connect(function()
  22. if TextBox.Text == correctKey then
  23. print("✅ صح")
  24. ScreenGui:Destroy()
  25.  
  26. -- 🔥 هنا يبدأ سكربتك الأصلي
  27. loadstring(game:HttpGet('https://pastebin.com/raw/UX8FLuqJ'))
  28.  
  29. else
  30. print("❌ غلط")
  31. end
  32. end)
Advertisement
Add Comment
Please, Sign In to add comment