Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local correctKey = "305511"
- local player = game.Players.LocalPlayer
- -- واجهة بسيطة تطلب مفتاح
- local ScreenGui = Instance.new("ScreenGui", game.CoreGui)
- local Frame = Instance.new("Frame", ScreenGui)
- Frame.Size = UDim2.new(0, 300, 0, 150)
- Frame.Position = UDim2.new(0.5, -150, 0.5, -75)
- local TextBox = Instance.new("TextBox", Frame)
- TextBox.Size = UDim2.new(1, -20, 0, 40)
- TextBox.Position = UDim2.new(0, 10, 0, 20)
- TextBox.PlaceholderText = "Enter Key..."
- local Button = Instance.new("TextButton", Frame)
- Button.Size = UDim2.new(1, -20, 0, 40)
- Button.Position = UDim2.new(0, 10, 0, 80)
- Button.Text = "Check Key"
- Button.MouseButton1Click:Connect(function()
- if TextBox.Text == correctKey then
- print("✅ صح")
- ScreenGui:Destroy()
- -- 🔥 هنا يبدأ سكربتك الأصلي
- loadstring(game:HttpGet('https://pastebin.com/raw/UX8FLuqJ'))
- else
- print("❌ غلط")
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment