Advertisement
Guest User

Untitled

a guest
May 24th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.81
  3.  
  4. -- Objects
  5.  
  6. local Dank = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local open = Instance.new("TextButton")
  9. local close = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. Dank.Name = "Dank"
  14. Dank.Parent = game.CoreGui
  15.  
  16. main.Name = "main"
  17. main.Parent = Dank
  18. main.Visible = false
  19. main.BackgroundColor3 = Color3.new(1, 1, 1)
  20. main.Position = UDim2.new(0.23300229, 0, 0.0350877196, 0)
  21. main.Size = UDim2.new(0, 192, 0, 287)
  22.  
  23. open.Name = "open"
  24. open.Parent = Dank
  25. open.BackgroundColor3 = Color3.new(1, 1, 1)
  26. open.Position = UDim2.new(0, 0, 0.639376223, 0)
  27. open.Size = UDim2.new(0, 162, 0, 46)
  28. open.Font = Enum.Font.SciFi
  29. open.Text = "Open Nigger"
  30. open.TextColor3 = Color3.new(0, 0, 0)
  31. open.TextSize = 14
  32.  
  33. close.Name = "close"
  34. close.Parent = Dank
  35. close.Visible = false
  36. close.BackgroundColor3 = Color3.new(1, 1, 1)
  37. close.Position = UDim2.new(0, 0, 0.639376223, 0)
  38. close.Size = UDim2.new(0, 162, 0, 46)
  39. close.Font = Enum.Font.SciFi
  40. close.Text = "Close Nigger"
  41. close.TextColor3 = Color3.new(0, 0, 0)
  42. close.TextSize = 14
  43.  
  44.  
  45. open.MouseButton1Down:connect(function()
  46. main.Visible = true
  47. open.Visible = false
  48. close.Visible = true
  49. end)
  50.  
  51. close.MouseButton1Down:connect(function()
  52. main.Visible = false
  53. open.Visible = true
  54. close.Visible = false
  55. end)
  56. -- Scripts
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement