Advertisement
Scriptorz5

grannygui

Apr 8th, 2019
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local MainGUI = Instance.new("Frame")
  6. local execute = Instance.new("TextButton")
  7. local TextLabel = Instance.new("TextLabel")
  8. local close = Instance.new("TextButton")
  9. local OpenGUI = Instance.new("Frame")
  10. local open = Instance.new("TextButton")
  11. --Properties:
  12. ScreenGui.Parent = game.CoreGui
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. MainGUI.Active = true -- draggable juu
  16. MainGUI.Draggable = true
  17.  
  18. MainGUI.Name = "MainGUI"
  19. MainGUI.Parent = ScreenGui
  20. MainGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  21. MainGUI.Position = UDim2.new(0.485572278, 0, 0.175675675, 0)
  22. MainGUI.Size = UDim2.new(0, 294, 0, 401)
  23. MainGUI.Visible = false
  24.  
  25. execute.Name = "execute"
  26. execute.Parent = MainGUI
  27. execute.BackgroundColor3 = Color3.new(1, 1, 1)
  28. execute.BorderSizePixel = 2
  29. execute.Position = UDim2.new(0.157054126, 0, 0.371571064, 0)
  30. execute.Size = UDim2.new(0, 200, 0, 50)
  31. execute.Font = Enum.Font.SourceSans
  32. execute.TextColor3 = Color3.new(0, 0, 0)
  33. execute.TextScaled = true
  34. execute.TextSize = 14
  35. execute.TextWrapped = true
  36. execute.MouseButton1Click:connect(function()--SCRIPTI TÄHÄN
  37. print("juupajuu")--enter script here
  38. end)
  39.  
  40. TextLabel.Parent = MainGUI
  41. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  42. TextLabel.BorderSizePixel = 0
  43. TextLabel.Position = UDim2.new(0.214877188, 0, 0.0149625931, 0)
  44. TextLabel.Size = UDim2.new(0, 166, 0, 50)
  45. TextLabel.Text = "grannygui"
  46. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  47. TextLabel.TextScaled = true
  48. TextLabel.TextSize = 14
  49. TextLabel.TextWrapped = true
  50.  
  51. close.Name = "close"
  52. close.Parent = MainGUI
  53. close.BackgroundColor3 = Color3.new(1, 1, 1)
  54. close.BorderSizePixel = 0
  55. close.Position = UDim2.new(0.888346553, 0, 0, 0)
  56. close.Size = UDim2.new(0, 32, 0, 32)
  57. close.Font = Enum.Font.SourceSans
  58. close.Text = "x"
  59. close.TextColor3 = Color3.new(0, 0, 0)
  60. close.TextScaled = true
  61. close.TextSize = 14
  62. close.TextWrapped = true
  63. close.MouseButton1Click:connect(function() --guin sulkemispainike
  64. MainGUI.Visible = false -- maingui pois
  65. OpenGUI.Visible = true -- opengui päälle
  66. end)
  67.  
  68. OpenGUI.Name = "OpenGUI"
  69. OpenGUI.Parent = ScreenGui
  70. OpenGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  71. OpenGUI.Position = UDim2.new(0.182993218, 0, 0.437346518, 0)
  72. OpenGUI.Size = UDim2.new(0, 140, 0, 50)
  73. OpenGUI.Active = true -- draggable juu
  74. OpenGUI.Draggable = true
  75.  
  76. open.Name = "open"
  77. open.Parent = OpenGUI
  78. open.BackgroundColor3 = Color3.new(1, 1, 1)
  79. open.BorderSizePixel = 0
  80. open.Position = UDim2.new(0.114647269, 0, 0.228560209, 0)
  81. open.Size = UDim2.new(0, 106, 0, 27)
  82. open.Font = Enum.Font.SciFi
  83. open.Text = "Open GUI"
  84. open.TextColor3 = Color3.new(0, 0, 0)
  85. open.TextScaled = true
  86. open.TextSize = 14
  87. open.TextWrapped = true
  88. open.MouseButton1Click:connect(function()
  89. MainGUI.Visible = true
  90. OpenGUI.Visible = false
  91. end)
  92.  
  93. print("toimii epic")
  94. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement