Advertisement
Grantrookie

GRUI V1

Oct 20th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.87 KB | None | 0 0
  1. -- Objects
  2. -- Code: .MouseButton1Down:connect(function()
  3.  
  4. local UltraInstinct = Instance.new("ScreenGui")
  5. local LoginFrame = Instance.new("Frame")
  6. local bar = Instance.new("Frame")
  7. local bar1 = Instance.new("Frame")
  8. local loginlabel = Instance.new("TextLabel")
  9. local user = Instance.new("TextBox")
  10. local pass = Instance.new("TextBox")
  11. local login = Instance.new("TextButton")
  12. local MainFrame = Instance.new("Frame")
  13. local bar2 = Instance.new("Frame")
  14. local bar3 = Instance.new("Frame")
  15. local title = Instance.new("TextLabel")
  16. local credit = Instance.new("TextLabel")
  17. local exitok = Instance.new("TextButton")
  18. local exebut = Instance.new("TextButton")
  19. local scriptbut = Instance.new("TextButton")
  20. local ExeFrame = Instance.new("Frame")
  21. local bar4 = Instance.new("Frame")
  22. local ScrollingFrame = Instance.new("ScrollingFrame")
  23. local input = Instance.new("TextBox")
  24. local clear = Instance.new("TextButton")
  25. local execute = Instance.new("TextButton")
  26. local ScriptFrame = Instance.new("Frame")
  27. local AnotherBar = Instance.new("Frame")
  28. local grab = Instance.new("TextButton")
  29. local sniper = Instance.new("TextButton")
  30. local telekenisis = Instance.new("TextButton")
  31. local greenfiresword = Instance.new("TextButton")
  32. local ak47 = Instance.new("TextButton")
  33. local knife = Instance.new("TextButton")
  34. local ultimatepower = Instance.new("TextButton")
  35. local btools = Instance.new("TextButton")
  36. local exitscripts = Instance.new("TextButton")
  37.  
  38. -- Properties
  39.  
  40. UltraInstinct.Name = "UltraInstinct"
  41. UltraInstinct.Parent = game.CoreGui
  42.  
  43. LoginFrame.Name = "LoginFrame"
  44. LoginFrame.Parent = UltraInstinct
  45. LoginFrame.Active = true
  46. LoginFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  47. LoginFrame.BackgroundTransparency = 0.050000000745058
  48. LoginFrame.Draggable = true
  49. LoginFrame.Position = UDim2.new(0, 211, 0, 197)
  50. LoginFrame.Size = UDim2.new(0, 320, 0, 387)
  51.  
  52. bar.Name = "bar"
  53. bar.Parent = LoginFrame
  54. bar.BackgroundColor3 = Color3.new(1, 0, 0)
  55. bar.Draggable = true
  56. bar.Size = UDim2.new(0, 320, 0, 18)
  57.  
  58. bar1.Name = "bar1"
  59. bar1.Parent = LoginFrame
  60. bar1.BackgroundColor3 = Color3.new(0.47451, 0, 0)
  61. bar1.Draggable = true
  62. bar1.Size = UDim2.new(0, 320, 0, 6)
  63.  
  64. loginlabel.Name = "loginlabel"
  65. loginlabel.Parent = LoginFrame
  66. loginlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  67. loginlabel.BackgroundTransparency = 1
  68. loginlabel.Position = UDim2.new(0, 60, 0, 51)
  69. loginlabel.Size = UDim2.new(0, 200, 0, 50)
  70. loginlabel.Font = Enum.Font.SourceSans
  71. loginlabel.FontSize = Enum.FontSize.Size14
  72. loginlabel.Text = "LOGIN"
  73. loginlabel.TextColor3 = Color3.new(0.509804, 0.796079, 1)
  74. loginlabel.TextScaled = true
  75. loginlabel.TextSize = 14
  76. loginlabel.TextWrapped = true
  77.  
  78. user.Name = "user"
  79. user.Parent = LoginFrame
  80. user.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  81. user.BorderColor3 = Color3.new(0.941177, 0.0588235, 0.0588235)
  82. user.Position = UDim2.new(0, 60, 0, 119)
  83. user.Size = UDim2.new(0, 200, 0, 22)
  84. user.Font = Enum.Font.SourceSans
  85. user.FontSize = Enum.FontSize.Size14
  86. user.Text = "Username"
  87. user.TextColor3 = Color3.new(1, 0, 0)
  88. user.TextSize = 14
  89.  
  90. pass.Name = "pass"
  91. pass.Parent = LoginFrame
  92. pass.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  93. pass.BorderColor3 = Color3.new(0.941177, 0.0588235, 0.0588235)
  94. pass.Position = UDim2.new(0.188327208, 0, 0.313078284, 50)
  95. pass.Size = UDim2.new(0, 200, 0, 22)
  96. pass.Font = Enum.Font.SourceSans
  97. pass.FontSize = Enum.FontSize.Size14
  98. pass.Text = "Password"
  99. pass.TextColor3 = Color3.new(1, 0, 0)
  100. pass.TextSize = 14
  101.  
  102. login.Name = "login"
  103. login.Parent = LoginFrame
  104. login.BackgroundColor3 = Color3.new(0.564706, 0, 0)
  105. login.BorderColor3 = Color3.new(0.756863, 0, 0)
  106. login.Position = UDim2.new(0, 60, 0, 214)
  107. login.Size = UDim2.new(0, 200, 0, 50)
  108. login.Font = Enum.Font.SourceSans
  109. login.FontSize = Enum.FontSize.Size14
  110. login.Text = "Login"
  111. login.TextColor3 = Color3.new(1, 0, 0)
  112. login.TextScaled = true
  113. login.TextSize = 14
  114. login.TextWrapped = true
  115. login.MouseButton1Down:connect(function()
  116. if user.Text == "AwesomeGrui" and pass.Text == "GRUICOOL" then
  117. LoginFrame.Visible = false
  118. MainFrame.Visible = true
  119. end
  120. end)
  121.  
  122. MainFrame.Name = "MainFrame"
  123. MainFrame.Parent = UltraInstinct
  124. MainFrame.Active = true
  125. MainFrame.Draggable = true
  126. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  127. MainFrame.BorderColor3 = Color3.new(0.807843, 0, 0)
  128. MainFrame.Position = UDim2.new(0, 313, 0, 110)
  129. MainFrame.Size = UDim2.new(0, 644, 0, 366)
  130. MainFrame.Visible = false
  131.  
  132. bar2.Name = "bar2"
  133. bar2.Parent = MainFrame
  134. bar2.BackgroundColor3 = Color3.new(0.988235, 0, 0)
  135. bar2.Size = UDim2.new(0, 644, 0, 16)
  136.  
  137. bar3.Name = "bar3"
  138. bar3.Parent = MainFrame
  139. bar3.BackgroundColor3 = Color3.new(0.603922, 0, 0)
  140. bar3.Position = UDim2.new(0, 0, 0, 17)
  141. bar3.Size = UDim2.new(0, 644, 0, 14)
  142.  
  143. title.Name = "title"
  144. title.Parent = MainFrame
  145. title.BackgroundColor3 = Color3.new(1, 0, 0)
  146. title.BackgroundTransparency = 1
  147. title.Position = UDim2.new(0, 44, 0, 25)
  148. title.Size = UDim2.new(0, 556, 0, 126)
  149. title.Font = Enum.Font.SourceSans
  150. title.FontSize = Enum.FontSize.Size60
  151. title.Text = "WELCOME TO GRUI! INGAME EXECUTOR"
  152. title.TextColor3 = Color3.new(1, 0, 0)
  153. title.TextSize = 50
  154. title.TextWrapped = true
  155.  
  156. credit.Name = "credit"
  157. credit.Parent = MainFrame
  158. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  159. credit.BackgroundTransparency = 1
  160. credit.Position = UDim2.new(0, 0, 0, 334)
  161. credit.Size = UDim2.new(0, 289, 0, 32)
  162. credit.Font = Enum.Font.SourceSans
  163. credit.FontSize = Enum.FontSize.Size14
  164. credit.Text = "Made By xXGamer GrantXx"
  165. credit.TextColor3 = Color3.new(1, 0, 0)
  166. credit.TextScaled = true
  167. credit.TextSize = 14
  168. credit.TextWrapped = true
  169.  
  170. exitok.Name = "exitok"
  171. exitok.Parent = MainFrame
  172. exitok.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  173. exitok.BorderColor3 = Color3.new(1, 0.113725, 0)
  174. exitok.Position = UDim2.new(0, 465, 0, 99)
  175. exitok.Size = UDim2.new(0, 153, 0, 36)
  176. exitok.Font = Enum.Font.SourceSans
  177. exitok.FontSize = Enum.FontSize.Size14
  178. exitok.Text = "Exit"
  179. exitok.TextColor3 = Color3.new(1, 0, 0)
  180. exitok.TextScaled = true
  181. exitok.TextSize = 14
  182. exitok.TextWrapped = true
  183. exitok.MouseButton1Down:connect(function()
  184. UltraInstinct:Destroy()
  185. end)
  186.  
  187. exebut.Name = "exebut"
  188. exebut.Parent = MainFrame
  189. exebut.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  190. exebut.BorderColor3 = Color3.new(1, 0.113725, 0)
  191. exebut.Position = UDim2.new(0, 89, 0, 183)
  192. exebut.Size = UDim2.new(0, 200, 0, 50)
  193. exebut.Font = Enum.Font.SourceSans
  194. exebut.FontSize = Enum.FontSize.Size14
  195. exebut.Text = "Execution"
  196. exebut.TextColor3 = Color3.new(1, 0, 0)
  197. exebut.TextScaled = true
  198. exebut.TextSize = 14
  199. exebut.TextWrapped = true
  200. exebut.MouseButton1Down:connect(function()
  201. MainFrame.Visible = false
  202. ExeFrame.Visible = true
  203. end)
  204.  
  205. scriptbut.Name = "scriptbut"
  206. scriptbut.Parent = MainFrame
  207. scriptbut.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  208. scriptbut.BorderColor3 = Color3.new(1, 0.113725, 0)
  209. scriptbut.Position = UDim2.new(0, 365, 0, 183)
  210. scriptbut.Size = UDim2.new(0, 200, 0, 50)
  211. scriptbut.Font = Enum.Font.SourceSans
  212. scriptbut.FontSize = Enum.FontSize.Size14
  213. scriptbut.Text = "Scripts"
  214. scriptbut.TextColor3 = Color3.new(1, 0, 0)
  215. scriptbut.TextScaled = true
  216. scriptbut.TextSize = 14
  217. scriptbut.TextWrapped = true
  218. scriptbut.MouseButton1Down:connect(function()
  219. ScriptFrame.Visible = true
  220. MainFrame.Visible = false
  221. end)
  222.  
  223. ExeFrame.Name = "ExeFrame"
  224. ExeFrame.Parent = UltraInstinct
  225. ExeFrame.Active = true
  226. ExeFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  227. ExeFrame.Draggable = true
  228. ExeFrame.Position = UDim2.new(0, 323, 0, 182)
  229. ExeFrame.Size = UDim2.new(0, 578, 0, 322)
  230. ExeFrame.Visible = false
  231.  
  232. bar4.Name = "bar4"
  233. bar4.Parent = ExeFrame
  234. bar4.BackgroundColor3 = Color3.new(1, 0, 0)
  235. bar4.Size = UDim2.new(0, 578, 0, 15)
  236.  
  237. ScrollingFrame.Parent = ExeFrame
  238. ScrollingFrame.BackgroundColor3 = Color3.new(0.45098, 0.45098, 0.45098)
  239. ScrollingFrame.Position = UDim2.new(0, 16, 0, 31)
  240. ScrollingFrame.Size = UDim2.new(0, 545, 0, 202)
  241. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 10000000, 0)
  242. ScrollingFrame.ScrollBarThickness = 10
  243.  
  244. input.Name = "input"
  245. input.Parent = ScrollingFrame
  246. input.BackgroundColor3 = Color3.new(1, 1, 1)
  247. input.BackgroundTransparency = 1
  248. input.Size = UDim2.new(0, 528, 0, 202)
  249. input.Font = Enum.Font.SourceSans
  250. input.FontSize = Enum.FontSize.Size24
  251. input.Text = "print(\"Any Scripts Here\");"
  252. input.TextSize = 20
  253. input.TextXAlignment = Enum.TextXAlignment.Left
  254. input.TextYAlignment = Enum.TextYAlignment.Top
  255.  
  256. clear.Name = "clear"
  257. clear.Parent = ExeFrame
  258. clear.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  259. clear.BorderColor3 = Color3.new(1, 0.113725, 0)
  260. clear.Position = UDim2.new(0.642962575, -83, 1.36795008, -188)
  261. clear.Size = UDim2.new(0, 200, 0, 50)
  262. clear.Font = Enum.Font.SourceSans
  263. clear.FontSize = Enum.FontSize.Size14
  264. clear.Text = "Clear"
  265. clear.TextColor3 = Color3.new(1, 0, 0)
  266. clear.TextScaled = true
  267. clear.TextSize = 14
  268. clear.TextWrapped = true
  269. clear.MouseButton1Down:connect(function()
  270. input.Text = "";
  271. end)
  272.  
  273. execute.Name = "execute"
  274. execute.Parent = ExeFrame
  275. execute.BackgroundColor3 = Color3.new(0.545098, 0, 0)
  276. execute.BorderColor3 = Color3.new(1, 0.113725, 0)
  277. execute.Position = UDim2.new(0.642962575, -325, 1.36795008, -188)
  278. execute.Size = UDim2.new(0, 200, 0, 50)
  279. execute.Font = Enum.Font.SourceSans
  280. execute.FontSize = Enum.FontSize.Size14
  281. execute.Text = "Execute"
  282. execute.TextColor3 = Color3.new(1, 0, 0)
  283. execute.TextScaled = true
  284. execute.TextSize = 14
  285. execute.TextWrapped = true
  286. execute.MouseButton1Down:connect(function()
  287. if input.Text == "ExitFrame();" then
  288. MainFrame.Visible = true
  289. ExeFrame.Visible = false
  290. print("Exited Frame")
  291. else
  292. loadstring(input.Text)()
  293. end
  294. end)
  295.  
  296. ScriptFrame.Name = "ScriptFrame"
  297. ScriptFrame.Parent = UltraInstinct
  298. ScriptFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  299. ScriptFrame.Position = UDim2.new(0, 304, 0, 174)
  300. ScriptFrame.Size = UDim2.new(0, 650, 0, 331)
  301. ScriptFrame.Visible = false
  302.  
  303. AnotherBar.Name = "AnotherBar"
  304. AnotherBar.Parent = ScriptFrame
  305. AnotherBar.BackgroundColor3 = Color3.new(1, 0, 0)
  306. AnotherBar.Size = UDim2.new(1.00399995, -4, 0.0299999993, 0)
  307.  
  308. grab.Name = "grab"
  309. grab.Parent = ScriptFrame
  310. grab.BackgroundColor3 = Color3.new(1, 0, 0)
  311. grab.BorderColor3 = Color3.new(0.490196, 0, 0)
  312. grab.Position = UDim2.new(0, 20, 0, 40)
  313. grab.Size = UDim2.new(0, 189, 0, 43)
  314. grab.Font = Enum.Font.SourceSans
  315. grab.FontSize = Enum.FontSize.Size14
  316. grab.Text = "Grab Knife"
  317. grab.TextScaled = true
  318. grab.TextSize = 14
  319. grab.TextWrapped = true
  320. grab.MouseButton1Down:connect(function()
  321. loadstring(game:GetObjects('rbxassetid://506859514')[1].Source)()
  322. end)
  323.  
  324. sniper.Name = "sniper"
  325. sniper.Parent = ScriptFrame
  326. sniper.BackgroundColor3 = Color3.new(1, 0, 0)
  327. sniper.BorderColor3 = Color3.new(0.490196, 0, 0)
  328. sniper.Position = UDim2.new(0, 231, 0, 40)
  329. sniper.Size = UDim2.new(0, 189, 0, 43)
  330. sniper.Font = Enum.Font.SourceSans
  331. sniper.FontSize = Enum.FontSize.Size14
  332. sniper.Text = "Sniper"
  333. sniper.TextScaled = true
  334. sniper.TextSize = 14
  335. sniper.TextWrapped = true
  336. sniper.MouseButton1Down:connect(function()
  337. game:GetObjects("rbxassetid://77429111")[1].Parent=game.Players.LocalPlayer.Backpack
  338. end)
  339.  
  340. telekenisis.Name = "telekenisis"
  341. telekenisis.Parent = ScriptFrame
  342. telekenisis.BackgroundColor3 = Color3.new(1, 0, 0)
  343. telekenisis.BorderColor3 = Color3.new(0.490196, 0, 0)
  344. telekenisis.Position = UDim2.new(0, 445, 0, 40)
  345. telekenisis.Size = UDim2.new(0, 189, 0, 43)
  346. telekenisis.Font = Enum.Font.SourceSans
  347. telekenisis.FontSize = Enum.FontSize.Size14
  348. telekenisis.Text = "Telekenisis"
  349. telekenisis.TextScaled = true
  350. telekenisis.TextSize = 14
  351. telekenisis.TextWrapped = true
  352. telekenisis.MouseButton1Down:connect(function()
  353. loadstring(game:GetObjects('rbxassetid://287147018')[1].Source)()
  354. end)
  355.  
  356. greenfiresword.Name = "greenfiresword"
  357. greenfiresword.Parent = ScriptFrame
  358. greenfiresword.BackgroundColor3 = Color3.new(1, 0, 0)
  359. greenfiresword.BorderColor3 = Color3.new(0.490196, 0, 0)
  360. greenfiresword.Position = UDim2.new(0, 20, 0, 122)
  361. greenfiresword.Size = UDim2.new(0, 189, 0, 43)
  362. greenfiresword.Font = Enum.Font.SourceSans
  363. greenfiresword.FontSize = Enum.FontSize.Size14
  364. greenfiresword.Text = "Green Fire Sword"
  365. greenfiresword.TextScaled = true
  366. greenfiresword.TextSize = 14
  367. greenfiresword.TextWrapped = true
  368. greenfiresword.MouseButton1Down:connect(function()
  369. loadstring(game:GetObjects('rbxassetid://169934427')[1].Source)()
  370. end)
  371.  
  372. ak47.Name = "ak47"
  373. ak47.Parent = ScriptFrame
  374. ak47.BackgroundColor3 = Color3.new(1, 0, 0)
  375. ak47.BorderColor3 = Color3.new(0.490196, 0, 0)
  376. ak47.Position = UDim2.new(0, 231, 0, 122)
  377. ak47.Size = UDim2.new(0, 189, 0, 43)
  378. ak47.Font = Enum.Font.SourceSans
  379. ak47.FontSize = Enum.FontSize.Size14
  380. ak47.Text = "Ak-47"
  381. ak47.TextScaled = true
  382. ak47.TextSize = 14
  383. ak47.TextWrapped = true
  384. ak47.MouseButton1Down:connect(function()
  385. loadstring(game:GetObjects('rbxassetid://149948769')[1].Source)()
  386. end)
  387.  
  388. knife.Name = "knife"
  389. knife.Parent = ScriptFrame
  390. knife.BackgroundColor3 = Color3.new(1, 0, 0)
  391. knife.BorderColor3 = Color3.new(0.490196, 0, 0)
  392. knife.Position = UDim2.new(0, 444, 0, 122)
  393. knife.Size = UDim2.new(0, 189, 0, 43)
  394. knife.Font = Enum.Font.SourceSans
  395. knife.FontSize = Enum.FontSize.Size14
  396. knife.Text = "Knife"
  397. knife.TextScaled = true
  398. knife.TextSize = 14
  399. knife.TextWrapped = true
  400. knife.MouseButton1Down:connect(function()
  401. loadstring(game:GetObjects('rbxassetid://131325481')[1].Source)()
  402. end)
  403.  
  404. ultimatepower.Name = "ultimatepower"
  405. ultimatepower.Parent = ScriptFrame
  406. ultimatepower.BackgroundColor3 = Color3.new(1, 0, 0)
  407. ultimatepower.BorderColor3 = Color3.new(0.490196, 0, 0)
  408. ultimatepower.Position = UDim2.new(0, 17, 0, 208)
  409. ultimatepower.Size = UDim2.new(0, 189, 0, 43)
  410. ultimatepower.Font = Enum.Font.SourceSans
  411. ultimatepower.FontSize = Enum.FontSize.Size14
  412. ultimatepower.Text = "Ultamate Power"
  413. ultimatepower.TextScaled = true
  414. ultimatepower.TextSize = 14
  415. ultimatepower.TextWrapped = true
  416. ultimatepower.MouseButton1Down:connect(function()
  417. loadstring(game:GetObjects('rbxassetid://99824252')[1].Source)()
  418. end)
  419.  
  420. btools.Name = "btools"
  421. btools.Parent = ScriptFrame
  422. btools.BackgroundColor3 = Color3.new(1, 0, 0)
  423. btools.BorderColor3 = Color3.new(0.490196, 0, 0)
  424. btools.Position = UDim2.new(0, 231, 0, 209)
  425. btools.Size = UDim2.new(0, 189, 0, 43)
  426. btools.Font = Enum.Font.SourceSans
  427. btools.FontSize = Enum.FontSize.Size14
  428. btools.Text = "Btools (Best)"
  429. btools.TextScaled = true
  430. btools.TextSize = 14
  431. btools.TextWrapped = true
  432. btools.MouseButton1Down:connect(function()
  433. loadstring(game:GetObjects('rbxassetid://161802178')[1].Source)()
  434. end)
  435.  
  436. exitscripts.Name = "exitscripts"
  437. exitscripts.Parent = ScriptFrame
  438. exitscripts.BackgroundColor3 = Color3.new(1, 0, 0)
  439. exitscripts.BorderColor3 = Color3.new(0.490196, 0, 0)
  440. exitscripts.Position = UDim2.new(0, 440, 0, 208)
  441. exitscripts.Size = UDim2.new(0, 189, 0, 43)
  442. exitscripts.Font = Enum.Font.SourceSans
  443. exitscripts.FontSize = Enum.FontSize.Size14
  444. exitscripts.Text = "Exit"
  445. exitscripts.TextScaled = true
  446. exitscripts.TextSize = 14
  447. exitscripts.TextWrapped = true
  448. exitscripts.Draggable = true
  449. exitscripts.MouseButton1Down:connect(function()
  450. ScriptFrame.Visible = false
  451. MainFrame.Visible = true
  452. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement