Advertisement
Guest User

Untitled

a guest
Dec 13th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 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. else
  10. script.Parent.Text = "Invalid User or Token"
  11. wait(2)
  12. script.Parent.Text = "login"
  13. end
  14. end))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement