Advertisement
Guest User

Password Gui roblox script by 0x35

a guest
Jun 2nd, 2014
4,449
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. --++ Made By 0x35 ++--
  2. --++ The password is hax ++--
  3. Gui=Instance.new("ScreenGui" ,game.StarterGui)
  4. Frame=Instance.new("Frame" ,Gui)
  5. Frame.Size = UDim2.new(0, 1440, 0, 800)
  6. Frame.BackgroundColor3 = Color3.new(9,0,0)
  7. Frame.Position = UDim2.new(0, 1, 0, 1)
  8. P=Instance.new("TextBox" ,Frame)
  9. P.Size = UDim2.new(0, 200,0, 20)
  10. P.BackgroundTransparency = 0.3
  11. P.Text = "Enter password to countine!"
  12. P.Position = UDim2.new(0, 570, 0, 400)
  13. B=Instance.new("TextButton" ,Frame)
  14. B.Size = UDim2.new(0, 200,0, 20)
  15. B.BackgroundTransparency = 0.3
  16. B.Text = "Countine"
  17. B.Position = UDim2.new(0, 570, 0, 470)
  18. BS=Instance.new("Script" ,B)
  19. BS.Source = [[
  20. function onClicked()
  21. if script.Parent.Parent.TextBox.Text == "hax" then
  22. script.Parent.Parent.Parent:Remove()
  23. else
  24. script.Parent.Parent.Parent.Parent.Parent:Remove()
  25. end
  26. end
  27. script.Parent.MouseButton1Down:connect(onClicked)
  28. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement