Advertisement
RetiredAkio

Aye

Dec 1st, 2018
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.55 KB | None | 0 0
  1. --]]
  2. Controls:
  3. Y to Open
  4. U to Close
  5.  
  6.  
  7. --[[
  8.  
  9.  
  10. --[[
  11.  
  12. Script Name: RB Console
  13. Script Creation Date: 11/22/2018
  14. Script Completion Date: 11/22/2018
  15.  
  16. Script Credits:
  17. Copyright (C) Article 13 my ass
  18. Feel free to use, but credit the right
  19. owner!
  20.  
  21. GUI - TheBeard#2331
  22. AntiScreen: A1 exe
  23. HyperKEK: A1 exe
  24. Stat Change: TheRealCurry
  25. ClickTP: Unknown, but credits to him!
  26. Updted By - RetiredAkio
  27. --]]
  28.  
  29. -- [[ Services ]] --
  30. local Player = game.Players.LocalPlayer;
  31. local Mouse = Player:GetMouse();
  32. local m = game.Players.LocalPlayer:GetMouse();
  33.  
  34. --[[ Instances ]]--
  35. local ScreenGui = Instance.new("ScreenGui")
  36. local Frame = Instance.new("Frame")
  37. local Command = Instance.new("TextBox")
  38. local Commands = Instance.new("TextLabel")
  39. local Execute = Instance.new("TextButton")
  40.  
  41.  
  42. --[[ Properties ]]--
  43. ScreenGui.Parent = game.CoreGui
  44.  
  45. Frame.Parent = ScreenGui
  46. Frame.Active = true
  47. Frame.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00392157)
  48. Frame.BackgroundTransparency = 0.75
  49. Frame.BorderSizePixel = 0
  50. Frame.Position = UDim2.new(0.326041639, 0, 0.452088445, 0)
  51. Frame.Selectable = true
  52. Frame.Size = UDim2.new(0, 668, 0, 77)
  53. Frame.Draggable = true
  54.  
  55. Execute.Name = "Execute"
  56. Execute.Parent = Frame
  57. Execute.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00392157)
  58. Execute.BackgroundTransparency = 0.64999997615814
  59. Execute.Position = UDim2.new(0.335, 0, 1.097, 0)
  60. Execute.Size = UDim2.new(0, 255, 0, 29)
  61. Execute.Font = Enum.Font.Code
  62. Execute.Text = "Execute"
  63. Execute.TextColor3 = Color3.new(1, 1, 1)
  64. Execute.TextSize = 14
  65.  
  66.  
  67. Command.Name = "Command"
  68. Command.Parent = Frame
  69. Command.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00392157)
  70. Command.BackgroundTransparency = 0.64999997615814
  71. Command.Position = UDim2.new(0.0149936331, 0, 0.110323422, 0)
  72. Command.Size = UDim2.new(0, 649, 0, 60)
  73. Command.Font = Enum.Font.Code
  74. Command.Text = "Run a command"
  75. Command.TextColor3 = Color3.new(1, 1, 1)
  76. Command.TextSize = 14
  77.  
  78. Commands.Name = "Commands"
  79. Commands.Parent = Frame
  80. Commands.BackgroundColor3 = Color3.new(0.00392157, 0.00392157, 0.00392157)
  81. Commands.BackgroundTransparency = 0.64999997615814
  82. Commands.BorderSizePixel = 5
  83. Commands.Position = UDim2.new(0, 0, -1.37662339, 0)
  84. Commands.Size = UDim2.new(0, 668, 0, 82)
  85. Commands.Font = Enum.Font.Code
  86. Commands.Text = "[RB Console]: antiscreen <-- You won't get shoved by a screen\n[RB Console]: hyperkek <-- Gives Infinite Stamina and Infinite Range of Dunking and Layup\n[RB Console]: statchange <-- Gives decent stat change\n[RB Console]: clicktp <-- Teleports you from your chosen location"
  87. Commands.TextColor3 = Color3.new(0.0470588, 1, 0)
  88. Commands.TextSize = 14
  89. Commands.TextXAlignment = Enum.TextXAlignment.Left
  90.  
  91. --[[ Functions ]]--
  92. db = true
  93. m.KeyDown:connect(function(k)
  94. k = k:lower()
  95. if k == "y" then
  96. Frame:TweenPosition(UDim2.new(0.326, 0, 0.452, 0), 'Out', 'Quad', 1, true)
  97. end
  98. end)
  99.  
  100. m.KeyDown:connect(function(k)
  101. k:lower()
  102. if k == "u" then
  103. Frame:TweenPosition(UDim2.new(0.5,-250,1.7,-200), 'In', 'Quad', 1, true)
  104. end
  105. end)
  106.  
  107. --[[ Scripts]] --
  108. Execute.MouseButton1Down:connect(function()
  109. if Command.Text == "antiscreen" then
  110. loadstring(game:HttpGet("https://pastebin.com/raw/qr2TSRsT",true))()
  111. game:GetService("StarterGui"):SetCore("SendNotification", {
  112. Title = "Edited By RetiredAkio";
  113. Text = "Successfully Fucked Your Mom!";
  114. })
  115. end
  116. end)
  117.  
  118. Execute.MouseButton1Down:connect(function()
  119. if Command.Text == "hyperkek" then
  120. loadstring(game:HttpGet("https://pastebin.com/raw/RRARMB51",true))()
  121. game:GetService("StarterGui"):SetCore("SendNotification", {
  122. Title = "Edited By RetiredAkio";
  123. Text = "Successfully Fucked Your Mom!";
  124. })
  125. end
  126. end)
  127.  
  128. Execute.MouseButton1Down:connect(function()
  129. if Command.Text == "statchange" then
  130. loadstring(game:HttpGet("https://pastebin.com/raw/1EQbJFF4",true))()
  131. game:GetService("StarterGui"):SetCore("SendNotification", {
  132. Title = "Edited By RetiredAkio";
  133. Text = "Successfully Fucked Your Mom!";
  134. })
  135. end
  136. end)
  137.  
  138. Execute.MouseButton1Down:connect(function()
  139. if Command.Text == "clicktp" then
  140. loadstring(game:HttpGet("https://pastebin.com/fML1aWXp",true))()
  141. game:GetService("StarterGui"):SetCore("SendNotification", {
  142. Title = "RB Fucker";
  143. Text = "Successfully Fucked Your Mom!";
  144. })
  145. end
  146. end)
  147.  
  148. local msg = Instance.new("Message",game.CoreGui)
  149. msg.Name = game.JobId
  150. msg.Text = "This Was Editied By RetiredAkio But Credit the Oringianl Owners"
  151. wait(5)
  152. msg:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement