Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. -- Innovation Reach made by kenneth1028.
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local main = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local Reach = Instance.new("TextButton")
  6. local close = Instance.new("TextButton")
  7. local openmain = Instance.new("Frame")
  8. local open = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.CoreGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. main.Name = "main"
  14. main.Parent = ScreenGui
  15. main.BackgroundColor3 = Color3.new(0.192157, 0.164706, 1)
  16. main.BorderColor3 = Color3.new(0.0156863, 0.0156863, 0.207843)
  17. main.Position = UDim2.new(0.125896409, 0, 0.647420168, 0)
  18. main.Size = UDim2.new(0, 293, 0, 100)
  19. main.Visible = false
  20. main.Active = true
  21. main.Draggable = true
  22.  
  23. TextLabel.Parent = main
  24. TextLabel.BackgroundColor3 = Color3.new(0, 0.0980392, 1)
  25. TextLabel.Position = UDim2.new(0.122866891, 0, 0, 0)
  26. TextLabel.Size = UDim2.new(0, 200, 0, 22)
  27. TextLabel.Font = Enum.Font.SourceSans
  28. TextLabel.Text = "Innovation Reach"
  29. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  30. TextLabel.TextSize = 14
  31. main.Active = true
  32. main.Draggable = true
  33.  
  34. Reach.Name = "Reach"
  35. Reach.Parent = main
  36. Reach.BackgroundColor3 = Color3.new(0, 1, 1)
  37. Reach.Position = UDim2.new(0, 0, 0.360000014, 0)
  38. Reach.Size = UDim2.new(0, 159, 0, 27)
  39. Reach.Font = Enum.Font.GothamBold
  40. Reach.Text = "Innovation Reach"
  41. Reach.TextColor3 = Color3.new(0, 0, 0)
  42. Reach.TextSize = 17
  43. Reach.MouseButton1Down:connect(function()
  44. a=Instance.new("SelectionBox",game.Players.LocalPlayer.Backpack["ASword"].Handle)
  45. a.Adornee=game.Players.LocalPlayer.Backpack.ASword.Handle
  46. game.Players.LocalPlayer.Backpack.ASword.Handle.Size=Vector3.new(6,6,6)
  47. end)
  48.  
  49. close.Name = "close"
  50. close.Parent = main
  51. close.BackgroundColor3 = Color3.new(1, 0, 0)
  52. close.Position = UDim2.new(0.92832768, 0, 0, 0)
  53. close.Size = UDim2.new(0, 21, 0, 14)
  54. close.Font = Enum.Font.GothamBlack
  55. close.Text = "X"
  56. close.TextColor3 = Color3.new(0, 0, 0)
  57. close.TextScaled = true
  58. close.TextSize = 14
  59. close.TextWrapped = true
  60. close.MouseButton1Down:connect(function()
  61. frame.Visible = true
  62. main.Visible = false
  63. end)
  64.  
  65. openmain.Name = "openmain"
  66. openmain.Parent = ScreenGui
  67. openmain.BackgroundColor3 = Color3.new(0, 0.666667, 1)
  68. openmain.Position = UDim2.new(0.0103585646, 0, 0.518427491, 0)
  69. openmain.Size = UDim2.new(0, 79, 0, 36)
  70.  
  71. open.Name = "open"
  72. open.Parent = openmain
  73. open.BackgroundColor3 = Color3.new(0.321569, 1, 0.741176)
  74. open.Position = UDim2.new(-0.0119628906, 0, -0.0198415127, 0)
  75. open.Size = UDim2.new(0, 79, 0, 36)
  76. open.Font = Enum.Font.GothamBold
  77. open.Text = "OPEN"
  78. open.TextColor3 = Color3.new(0, 0, 0)
  79. open.TextSize = 14
  80. open.MouseButton1Down:connect(function()
  81. main.Visible = true
  82. frame.Visible = false
  83. end)
  84. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement