Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local Login = script.Parent.Parent
  2. local username = login:FindFirstChild('username')
  3. local token = login:FindFirstChild('token')
  4.  
  5. script.Parent.MouseButton1Click:Connect(function()
  6. if username.Text == "OTDevs" and token.Text == "pcheat"
  7. local MainLocal = login.Parent:FindFirstChild('MainLocal')
  8. MainLocal.visible = true
  9. Login.visible = false
  10. else
  11. script.Parent.Text = "Invalid User or Token"
  12. wait(2)
  13. script.Parent.Text = "login"
  14. end
  15. end))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement