Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.95 KB | None | 0 0
  1. game.StarterGui:SetCore("SendNotification",{Title="R0Beat Haxx Loaded",Text="Thank you for using this GUI. Enjoy exploiting RoBeats!",Duration=3})
  2. [/b]
  3. wait(2)
  4. local Robeats = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local open = Instance.new("TextButton")
  7. local main = Instance.new("Frame")
  8. local title = Instance.new("TextLabel")
  9. local credits = Instance.new("TextLabel")
  10. local autoplayer = Instance.new("TextButton")
  11. local keybind = Instance.new("TextButton")
  12. local close = Instance.new("TextButton")
  13. local notespeed = Instance.new ("TextButton")
  14. local autoplayer2 = Instance.new("TextButton")
  15. local alternate = Instance.new("TextButton")
  16. local comingsoon = Instance.new("TextButton")
  17. local creditscript = Instance.new("TextLabel")
  18. local version = Instance.new("TextButton")
  19. --Properties:
  20. Robeats.Name = "Robeats"
  21. Robeats.Parent = game.CoreGui
  22. Frame.Parent = Robeats
  23. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  24. Frame.Position = UDim2.new(0, 0, 0.42137593, 0)
  25. Frame.Size = UDim2.new(0, 99, 0, 23)
  26. Frame.Style = Enum.FrameStyle.DropShadow
  27.  
  28. open.Name = "open"
  29. open.Parent = Frame
  30. open.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  31. open.BackgroundTransparency = 0.89999997615814
  32. open.Position = UDim2.new(-0.141414136, 0, -1.13043475, 0)
  33. open.Size = UDim2.new(0, 103, 0, 23)
  34. open.AutoButtonColor = false
  35. open.Font = Enum.Font.SourceSans
  36. open.Text = "Open"
  37. open.TextColor3 = Color3.new(0, 0.666667, 0.498039)
  38. open.TextSize = 14
  39. open.TextWrapped = true
  40. open.MouseButton1Click:connect(function()
  41. main.Visible = true
  42. end)
  43.  
  44. main.Name = "main"
  45. main.Parent = Robeats
  46. main.BackgroundColor3 = Color3.new(1, 1, 1)
  47. main.BorderColor3 = Color3.new(0, 0, 0)
  48. main.Position = UDim2.new(0.130228892, 0, 0.296068817, 0)
  49. main.Size = UDim2.new(0, 356, 0, 247)
  50. main.Visible = false
  51. main.Style = Enum.FrameStyle.DropShadow
  52. main.Active = true
  53. main.Draggable = true
  54.  
  55. title.Name = "title"
  56. title.Parent = main
  57. title.Active = true
  58. title.BackgroundColor3 = Color3.new(0, 0, 0)
  59. title.BackgroundTransparency = 0.89999997615814
  60. title.Position = UDim2.new(0.199438199, 0, 0.00404858403, 0)
  61. title.Size = UDim2.new(0, 204, 0, 50)
  62. title.Font = Enum.Font.Arcade
  63. title.Text = "R0beat Haxx"
  64. title.TextColor3 = Color3.new(1, 0, 0)
  65. title.TextSize = 20
  66. title.TextStrokeTransparency = 0.89999997615814
  67. title.TextWrapped = true
  68.  
  69. credits.Name = "credits"
  70. credits.Parent = main
  71. credits.Active = false
  72. credits.BackgroundColor3 = Color3.new(0, 0, 0)
  73. credits.BackgroundTransparency = 0.89999997615814
  74. credits.Position = UDim2.new(0.0421348363, 0, 0.923076868, 0)
  75. credits.Size = UDim2.new(0, 314, 0, 16)
  76. credits.Font = Enum.Font.Arcade
  77. credits.Text = "Made by: Kakashi32#0200"
  78. credits.TextColor3 = Color3.new(1, 0, 0)
  79. credits.TextSize = 14
  80. credits.TextStrokeTransparency = 0.89999997615814
  81. credits.TextWrapped = true
  82.  
  83. autoplayer.Name = "auto player"
  84. autoplayer.Parent = main
  85. autoplayer.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  86. autoplayer.BackgroundTransparency = 0.80000001192093
  87. autoplayer.Position = UDim2.new(0.0112359561, 0, 0.315789461, 0)
  88. autoplayer.Size = UDim2.new(0, 116, 0, 29)
  89. autoplayer.Font = Enum.Font.Highway
  90. autoplayer.Text = "Auto player"
  91. autoplayer.TextColor3 = Color3.new(0.666667, 0, 0)
  92. autoplayer.TextSize = 14
  93. autoplayer.TextStrokeTransparency = 0.89999997615814
  94. autoplayer.TextWrapped = true
  95.  
  96. autoplayer.MouseButton1Down:connect(function()
  97. local held = {}
  98. local enabled = false
  99. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  100. if key == "g" then
  101. enabled = not enabled
  102. print(enabled)
  103. end
  104. end)
  105. local function ua(_game, slot)
  106. local game_slot = _game:get_local_game_slot()
  107. if slot ~= game_slot then return end
  108. local parent_tracksystem = _game:get_tracksystem(game_slot)
  109. local parent_tracksystem_notes = parent_tracksystem:get_notes()
  110. for i=1,parent_tracksystem_notes:count() do
  111. local itr_note = parent_tracksystem_notes:get(i)
  112. local itr_note_track = itr_note:get_track_index(i)
  113. if held[itr_note_track] then
  114. local did_release, note_result = itr_note:test_release(_game)
  115. if did_release and note_result == 3 then
  116. held[itr_note_track] = nil
  117. parent_tracksystem:release_track_index(_game,itr_note_track)
  118. end
  119. elseif enabled then
  120. local did_hit, note_result = itr_note:test_hit(_game)
  121. if did_hit and note_result == 3 then
  122. parent_tracksystem:press_track_index(_game,itr_note_track)
  123. if not itr_note.get_time_to_end then
  124. held[itr_note_track] = true
  125. else
  126. spawn(function()
  127. parent_tracksystem:release_track_index(_game,itr_note_track)
  128. end)
  129. end
  130. end
  131. end
  132. end
  133. end
  134. for i,v in pairs(getgc())do
  135. if type(v)=="function" then
  136. local upv=debug.getupvalues(v)
  137. if upv.K and type(upv.K) == "table" and upv.K.new then
  138. local o=upv.K.new
  139. upv.K.new = function(...)
  140. local r=o(...)
  141. if r["release_track_index"] then
  142. local ou = r.update
  143. function r:update(s, g)
  144. ua(g, r._game_slot)
  145. return ou(r, s, g)
  146. end
  147. else
  148. upv.K.new = o
  149. end
  150. return r
  151. end
  152. end
  153. end
  154. end
  155. end)
  156.  
  157. keybind.Name = "keybind"
  158. keybind.Parent = main
  159. keybind.BackgroundColor3 = Color3.new(1, 1, 1)
  160. keybind.BackgroundTransparency = 9
  161. keybind.Position = UDim2.new(0.0393258408, 0, 0.441295534, 0)
  162. keybind.Size = UDim2.new(0, 101, 0, 15)
  163. keybind.Font = Enum.Font.SourceSans
  164. keybind.Text = "Keybind: G"
  165. keybind.TextColor3 = Color3.new(1, 1, 1)
  166. keybind.TextSize = 14
  167.  
  168. close.Name = "close"
  169. close.Parent = main
  170. close.Active = false
  171. close.BackgroundColor3 = Color3.new(0, 0, 0)
  172. close.BackgroundTransparency = 0.89999997615814
  173. close.Position = UDim2.new(0.932584286, 0, 0, 0)
  174. close.Size = UDim2.new(0, 23, 0, 19)
  175. close.Font = Enum.Font.Arcade
  176. close.Text = "X"
  177. close.TextColor3 = Color3.new(1, 0, 0)
  178. close.TextSize = 20
  179. close.TextStrokeTransparency = 0.89999997615814
  180. close.TextWrapped = true
  181. close.MouseButton1Click:connect(function()
  182. main.Visible = false
  183. end)
  184.  
  185. notespeed.Name = "note speed"
  186. notespeed.Parent = main
  187. notespeed.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  188. notespeed.BackgroundTransparency = 0.80000001192093
  189. notespeed.Position = UDim2.new(0.528089881, 0, 0.315789461, 0)
  190. notespeed.Size = UDim2.new(0, 116, 0, 29)
  191. notespeed.Font = Enum.Font.Highway
  192. notespeed.Text = "Note speed"
  193. notespeed.TextColor3 = Color3.new(0.666667, 0, 0)
  194. notespeed.TextSize = 14
  195. notespeed.TextStrokeTransparency = 0.89999997615814
  196. notespeed.TextWrapped = true
  197. notespeed.MouseButton1Down:connect(function()
  198. local BufferTime = 1
  199. for i,v in pairs(getgc())do
  200. if type(v)=="function"then
  201. local u=debug.getupvalues(v)
  202. if u.B and type(u.B) == "table" and u.B.MOD_NORMAL then
  203. local s=u.B:singleton()
  204. for i=1,400 do
  205. local d=s:get_data_for_key(i)
  206. if d then
  207. d.AudioNotePrebufferTime=BufferTime
  208. end
  209. end
  210. break
  211. end
  212. end
  213. end
  214. end)
  215.  
  216. comingsoon.Name = "coming soon"
  217. comingsoon.Parent = main
  218. comingsoon.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  219. comingsoon.BackgroundTransparency = 0.80000001192093
  220. comingsoon.Position = UDim2.new(0.567415714, 0, 0.570850194, 0)
  221. comingsoon.Size = UDim2.new(0, 116, 0, 34)
  222. comingsoon.Font = Enum.Font.Highway
  223. comingsoon.Text = "Coming soon..."
  224. comingsoon.TextColor3 = Color3.new(0, 0, 0)
  225. comingsoon.TextSize = 14
  226. comingsoon.TextStrokeTransparency = 0.89999997615814
  227. comingsoon.TextWrapped = true
  228.  
  229.  
  230. autoplayer2.Name = "auto player 2"
  231. autoplayer2.Parent = main
  232. autoplayer2.BackgroundColor3 = Color3.new(0.301961, 0.301961, 0.301961)
  233. autoplayer2.BackgroundTransparency = 0.80000001192093
  234. autoplayer2.Position = UDim2.new(0.0140449423, 0, 0.574898779, 0)
  235. autoplayer2.Size = UDim2.new(0, 115, 0, 33)
  236. autoplayer2.Font = Enum.Font.Highway
  237. autoplayer2.Text = "Auto Player 2"
  238. autoplayer2.TextColor3 = Color3.new(0.666667, 0, 0)
  239. autoplayer2.TextSize = 14
  240. autoplayer2.TextStrokeTransparency = 0.89999997615814
  241. autoplayer2.TextWrapped = true
  242. autoplayer2.MouseButton1Down:connect(function()
  243. local held = {}
  244. local enabled = false
  245. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  246. local held = {}
  247. local enabled = false
  248. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  249. if key == "g" then
  250. enabled = not enabled
  251. print(enabled)
  252. end
  253. end)
  254. local function ua(_game, slot, tracksystem)
  255. local game_slot = _game:get_local_game_slot()
  256. if slot ~= game_slot then return end
  257. local parent_tracksystem_notes = tracksystem:get_notes()
  258. for i=1,parent_tracksystem_notes:count() do
  259. local itr_note = parent_tracksystem_notes:get(i)
  260. local itr_note_track = itr_note:get_track_index(i)
  261. if held[itr_note_track] then
  262. local did_release, note_result = itr_note:test_release(_game)
  263. if did_release and note_result == 3 then
  264. held[itr_note_track] = nil
  265. tracksystem:release_track_index(_game,itr_note_track)
  266. end
  267. elseif enabled then
  268. local did_hit, note_result = itr_note:test_hit(_game)
  269. if did_hit and note_result == 3 then
  270. tracksystem:press_track_index(_game,itr_note_track)
  271. if not itr_note.get_time_to_end then
  272. held[itr_note_track] = true
  273. else
  274. spawn(function()
  275. tracksystem:release_track_index(_game,itr_note_track)
  276. end)
  277. end
  278. end
  279. end
  280. end
  281. end
  282. for i,v in pairs(getgc())do
  283. if type(v)=="function" then
  284. local upv=debug.getupvalues(v)
  285. if upv.A and type(upv.A) == "table" and upv.A.new then
  286. local o=upv.A.new
  287. upv.A.new = function(...)
  288. local r=o(...)
  289. if r["release_track_index"] then
  290. print("got track")
  291. local ou = r.update
  292. function r:update(s, g)
  293. ua(g, r._game_slot, r)
  294. return ou(r, s, g)
  295. end
  296. else
  297. upv.A.new = o
  298. end
  299. return r
  300. end
  301. end
  302. end
  303. end
  304. end)
  305.  
  306. alternate.Name = "alternate"
  307. alternate.Parent = main
  308. alternate.BackgroundColor3 = Color3.new(1, 1, 1)
  309. alternate.BackgroundTransparency = 9
  310. alternate.Position = UDim2.new(0.0337078646, 0, 0.720647812, 0)
  311. alternate.Size = UDim2.new(0, 101, 0, 14)
  312. alternate.Font = Enum.Font.SourceSans
  313. alternate.Text = "(Recommended)"
  314. alternate.TextColor3 = Color3.new(1, 1, 1)
  315. alternate.TextSize = 14
  316.  
  317. ersion.Name = "version"
  318. version.Parent = main
  319. version.BackgroundColor3 = Color3.new(1, 1, 1)
  320. version.BackgroundTransparency = 9
  321. version.Position = UDim2.new(0.0140449386, 0, 0.00404854305, 0)
  322. version.Size = UDim2.new(0, 25, 0, 13)
  323. version.Font = Enum.Font.SourceSans
  324. version.Text = "V1.0"
  325. version.TextColor3 = Color3.new(1, 0, 0)
  326. version.TextSize = 14
  327.  
  328. -- Scripts:
  329. function SCRIPT_ZQJW69_FAKESCRIPT() -- version.LocalScript
  330. getfenv().script = Instance.new('LocalScript', version)
  331.  
  332. local top = 255
  333. while true do
  334. wait()
  335. for i = 1,top,1 do
  336. script.Parent.TextColor3 = Color3.new(i/top,0/top,0/top)
  337. wait()
  338. end
  339. for i = 1,top,1 do
  340. script.Parent.TextColor3 = Color3.new(top/top,i/top,0/top)
  341. wait()
  342. end
  343. for i = 1,top,1 do
  344. script.Parent.TextColor3 = Color3.new(top/top,top/top,i/top)
  345. wait()
  346. end
  347. for i = top,1,-1 do
  348. script.Parent.TextColor3 = Color3.new(i/top,top/top,top/top)
  349. wait()
  350. end
  351. for i = top,1,-1 do
  352. script.Parent.TextColor3 = Color3.new(0/top,i/top,top/top)
  353. wait()
  354. end
  355. for i = top,1,-1 do
  356. script.Parent.TextColor3 = Color3.new(0/top,0/top,i/top)
  357. wait()
  358. end
  359. end
  360.  
  361. end
  362. coroutine.resume(coroutine.create(SCRIPT_ZQJW69_FAKESCRIPT))
  363. [b]end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement