Advertisement
MeowyMeowth

Rc7 Script (Not Mine)

Jun 8th, 2024 (edited)
3,684
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.84 KB | None | 1 0
  1. --- Made By C00lkid :D
  2. --- The Pass is MeowyMeowth
  3.  
  4. -- Instances:
  5.  
  6. local rc7 = Instance.new("ScreenGui")
  7. local mini = Instance.new("ImageButton")
  8. local passpage = Instance.new("ImageLabel")
  9. local submit = Instance.new("TextButton")
  10. local user = Instance.new("TextBox")
  11. local pass = Instance.new("TextBox")
  12. local close = Instance.new("TextButton")
  13. local minimize = Instance.new("TextButton")
  14. local mainpage = Instance.new("ImageLabel")
  15. local input = Instance.new("TextBox")
  16. local output = Instance.new("TextBox")
  17. local exe = Instance.new("TextButton")
  18. local clear = Instance.new("TextButton")
  19. local open = Instance.new("TextButton")
  20. local roxploit = Instance.new("TextButton")
  21. local dex = Instance.new("TextButton")
  22. local close_2 = Instance.new("TextButton")
  23. local minimize_2 = Instance.new("TextButton")
  24. -- Add the notification TextLabel
  25. local notification = Instance.new("TextLabel")
  26.  
  27. --Properties:
  28.  
  29. rc7.Name = "rc7"
  30. rc7.Parent = game.CoreGui
  31. rc7.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  32.  
  33. mini.Name = "mini"
  34. mini.Parent = rc7
  35. mini.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  36. mini.BackgroundTransparency = 1.000
  37. mini.BorderColor3 = Color3.fromRGB(0, 0, 0)
  38. mini.BorderSizePixel = 0
  39. mini.Position = UDim2.new(0, 0, 0.894399107, 0)
  40. mini.Size = UDim2.new(0, 58, 0, 60)
  41. mini.Visible = false
  42. mini.Image = "http://www.roblox.com/asset/?id=14416021390"
  43. mini.MouseButton1Down:connect(function()
  44. mainpage.Visible = true
  45. mini.Visible = false
  46. end)
  47.  
  48. passpage.Name = "passpage"
  49. passpage.Parent = rc7
  50. passpage.Active = true
  51. passpage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  52. passpage.BorderColor3 = Color3.fromRGB(0, 0, 0)
  53. passpage.BorderSizePixel = 0
  54. passpage.Position = UDim2.new(0.171028033, 0, 0.178529739, 0)
  55. passpage.Size = UDim2.new(0, 349, 0, 363)
  56. passpage.Image = "rbxassetid://13695440070"
  57.  
  58. submit.Name = "submit"
  59. submit.Parent = passpage
  60. submit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  61. submit.BackgroundTransparency = 1.000
  62. submit.BorderColor3 = Color3.fromRGB(0, 0, 0)
  63. submit.BorderSizePixel = 0
  64. submit.Position = UDim2.new(0.343839556, 0, 0.561983466, 0)
  65. submit.Size = UDim2.new(0, 101, 0, 20)
  66. submit.Font = Enum.Font.SourceSans
  67. submit.Text = ""
  68. submit.TextColor3 = Color3.fromRGB(0, 0, 0)
  69. submit.TextSize = 14.000
  70. submit.MouseButton1Down:connect(function()
  71. if pass.Text == "MeowyMeowth" then
  72. passpage.Visible = false
  73. mainpage.Visible = true
  74. else
  75. pass.Text = "Wrong Password! Password Is MeowyMeowth!"
  76. wait(2)
  77. pass.Text = ""
  78. end
  79. end)
  80.  
  81. user.Name = "user"
  82. user.Parent = passpage
  83. user.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  84. user.BackgroundTransparency = 1.000
  85. user.BorderColor3 = Color3.fromRGB(0, 0, 0)
  86. user.BorderSizePixel = 0
  87. user.Position = UDim2.new(0.260744989, 0, 0.393939406, 0)
  88. user.Size = UDim2.new(0, 160, 0, 21)
  89. user.Font = Enum.Font.SourceSans
  90. user.Text = "Meowth"
  91. user.TextColor3 = Color3.fromRGB(20, 212, 255)
  92. user.TextSize = 14.000
  93. user.TextWrapped = true
  94.  
  95. pass.Name = "pass"
  96. pass.Parent = passpage
  97. pass.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  98. pass.BackgroundTransparency = 1.000
  99. pass.BorderColor3 = Color3.fromRGB(0, 0, 0)
  100. pass.BorderSizePixel = 0
  101. pass.Position = UDim2.new(0.261000007, 0, 0.479999989, 0)
  102. pass.Size = UDim2.new(0, 160, 0, 21)
  103. pass.Font = Enum.Font.SourceSans
  104. pass.Text = ""
  105. pass.TextColor3 = Color3.fromRGB(20, 212, 255)
  106. pass.TextSize = 14.000
  107. pass.TextWrapped = true
  108.  
  109. close.Name = "close"
  110. close.Parent = passpage
  111. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  112. close.BackgroundTransparency = 1.000
  113. close.BorderColor3 = Color3.fromRGB(0, 0, 0)
  114. close.BorderSizePixel = 0
  115. close.Position = UDim2.new(0.88252151, 0, 0, 0)
  116. close.Size = UDim2.new(0, 41, 0, 24)
  117. close.Font = Enum.Font.SourceSans
  118. close.Text = ""
  119. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  120. close.TextSize = 14.000
  121. close.MouseButton1Down:connect(function()
  122. passpage.Visible = false
  123. end)
  124.  
  125. minimize.Name = "minimize"
  126. minimize.Parent = passpage
  127. minimize.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  128. minimize.BackgroundTransparency = 1.000
  129. minimize.BorderColor3 = Color3.fromRGB(0, 0, 0)
  130. minimize.BorderSizePixel = 0
  131. minimize.Position = UDim2.new(0.598853886, 0, 0, 0)
  132. minimize.Size = UDim2.new(0, 41, 0, 24)
  133. minimize.Font = Enum.Font.SourceSans
  134. minimize.Text = ""
  135. minimize.TextColor3 = Color3.fromRGB(0, 0, 0)
  136. minimize.TextSize = 14.000
  137.  
  138. mainpage.Name = "mainpage"
  139. mainpage.Parent = rc7
  140. mainpage.Active = true
  141. mainpage.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  142. mainpage.BorderColor3 = Color3.fromRGB(0, 0, 0)
  143. mainpage.BorderSizePixel = 0
  144. mainpage.Position = UDim2.new(0.171028033, 0, 0.178529739, 0)
  145. mainpage.Size = UDim2.new(0, 349, 0, 363)
  146. mainpage.Visible = false
  147. mainpage.Image = "http://www.roblox.com/asset/?id=12263991723"
  148.  
  149. input.Name = "input"
  150. input.Parent = mainpage
  151. input.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  152. input.BorderColor3 = Color3.fromRGB(0, 0, 0)
  153. input.BorderSizePixel = 0
  154. input.Position = UDim2.new(0.0343839526, 0, 0.0991735533, 0)
  155. input.Size = UDim2.new(0, 296, 0, 239)
  156. input.Font = Enum.Font.Arial
  157. input.MultiLine = true
  158. input.Text = ""
  159. input.TextColor3 = Color3.fromRGB(0, 0, 0)
  160. input.TextSize = 14.000
  161. input.TextWrapped = true
  162. input.TextXAlignment = Enum.TextXAlignment.Left
  163. input.TextYAlignment = Enum.TextYAlignment.Top
  164.  
  165. output.Name = "output"
  166. output.Parent = mainpage
  167. output.Active = false
  168. output.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  169. output.BorderColor3 = Color3.fromRGB(0, 0, 0)
  170. output.BorderSizePixel = 0
  171. output.Position = UDim2.new(0.0343839526, 0, 0.845730007, 0)
  172. output.Size = UDim2.new(0, 296, 0, 52)
  173. output.Font = Enum.Font.Arial
  174. output.Text = ""
  175. output.TextColor3 = Color3.fromRGB(0, 0, 0)
  176. output.TextSize = 14.000
  177. output.TextWrapped = true
  178. output.TextXAlignment = Enum.TextXAlignment.Left
  179. output.TextYAlignment = Enum.TextYAlignment.Top
  180.  
  181. exe.Name = "exe"
  182. exe.Parent = mainpage
  183. exe.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  184. exe.BackgroundTransparency = 1.000
  185. exe.BorderColor3 = Color3.fromRGB(0, 0, 0)
  186. exe.BorderSizePixel = 0
  187. exe.Position = UDim2.new(0.315186232, 0, 0.774104655, 0)
  188. exe.Size = UDim2.new(0, 99, 0, 20)
  189. exe.Font = Enum.Font.ArialBold
  190. exe.Text = "Execute"
  191. exe.TextColor3 = Color3.fromRGB(20, 212, 255)
  192. exe.TextSize = 14.000
  193. exe.MouseButton1Down:connect(function()
  194. loadstring(input.Text)()
  195. output.Text = "Script successfully executed!"
  196. wait(2)
  197. output.Text = " "
  198. if input.Text == " " then
  199. output.Text = "Script is blank, paste a script!"
  200. wait(2)
  201. output.Text = " "
  202. end
  203. end)
  204.  
  205. clear.Name = "clear"
  206. clear.Parent = mainpage
  207. clear.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  208. clear.BackgroundTransparency = 1.000
  209. clear.BorderColor3 = Color3.fromRGB(0, 0, 0)
  210. clear.BorderSizePixel = 0
  211. clear.Position = UDim2.new(0.598853886, 0, 0.774104655, 0)
  212. clear.Size = UDim2.new(0, 99, 0, 20)
  213. clear.Font = Enum.Font.ArialBold
  214. clear.Text = "Clear"
  215. clear.TextColor3 = Color3.fromRGB(20, 212, 255)
  216. clear.TextSize = 14.000
  217. clear.MouseButton1Down:connect(function()
  218. input.Text = " "
  219. end)
  220.  
  221. open.Name = "open"
  222. open.Parent = mainpage
  223. open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  224. open.BackgroundTransparency = 1.000
  225. open.BorderColor3 = Color3.fromRGB(0, 0, 0)
  226. open.BorderSizePixel = 0
  227. open.Position = UDim2.new(0.0343839526, 0, 0.774104655, 0)
  228. open.Size = UDim2.new(0, 99, 0, 20)
  229. open.Font = Enum.Font.ArialBold
  230. open.Text = "Open"
  231. open.TextColor3 = Color3.fromRGB(20, 212, 255)
  232. open.TextSize = 14.000
  233. open.MouseButton1Down:connect(function()
  234. loadstring(game:HttpGet("https://raw.githubusercontent.com/FilteringEnabled/FE/main/ScriptHub"))()
  235. end)
  236.  
  237. roxploit.Name = "roxploit"
  238. roxploit.Parent = mainpage
  239. roxploit.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  240. roxploit.BackgroundTransparency = 1.000
  241. roxploit.BorderColor3 = Color3.fromRGB(0, 0, 0)
  242. roxploit.BorderSizePixel = 0
  243. roxploit.Position = UDim2.new(0.904999971, 0, 0.799000025, 0)
  244. roxploit.Size = UDim2.new(0, 29, 0, 29)
  245. roxploit.Font = Enum.Font.SourceSans
  246. roxploit.Text = ""
  247. roxploit.TextColor3 = Color3.fromRGB(0, 0, 0)
  248. roxploit.TextSize = 14.000
  249. roxploit.MouseButton1Down:connect(function()
  250. loadstring(game:HttpGet("https://scriptblox.com/raw/Universal-Script-RoXploit-by-KrystalTeam-9328"))()
  251. end)
  252.  
  253. dex.Name = "dex"
  254. dex.Parent = mainpage
  255. dex.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  256. dex.BackgroundTransparency = 1.000
  257. dex.BorderColor3 = Color3.fromRGB(0, 0, 0)
  258. dex.BorderSizePixel = 0
  259. dex.Position = UDim2.new(0.904999971, 0, 0.910000026, 0)
  260. dex.Size = UDim2.new(0, 29, 0, 29)
  261. dex.Font = Enum.Font.SourceSans
  262. dex.Text = ""
  263. dex.TextColor3 = Color3.fromRGB(0, 0, 0)
  264. dex.TextSize = 14.000
  265. dex.MouseButton1Down:connect(function()
  266. loadstring(game:HttpGet("https://cdn.wearedevs.net/scripts/Dex%20Explorer.txt"))()
  267. end)
  268.  
  269. close_2.Name = "close"
  270. close_2.Parent = mainpage
  271. close_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  272. close_2.BackgroundTransparency = 1.000
  273. close_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  274. close_2.BorderSizePixel = 0
  275. close_2.Position = UDim2.new(0.88252151, 0, 0, 0)
  276. close_2.Size = UDim2.new(0, 41, 0, 24)
  277. close_2.Font = Enum.Font.SourceSans
  278. close_2.Text = ""
  279. close_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  280. close_2.TextSize = 14.000
  281. close_2.MouseButton1Down:connect(function()
  282. mainpage.Visible = false
  283. end)
  284.  
  285. minimize_2.Name = "minimize"
  286. minimize_2.Parent = mainpage
  287. minimize_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  288. minimize_2.BackgroundTransparency = 1.000
  289. minimize_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  290. minimize_2.BorderSizePixel = 0
  291. minimize_2.Position = UDim2.new(0.598853886, 0, 0, 0)
  292. minimize_2.Size = UDim2.new(0, 41, 0, 24)
  293. minimize_2.Font = Enum.Font.SourceSans
  294. minimize_2.Text = ""
  295. minimize_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  296. minimize_2.TextSize = 14.000
  297. minimize_2.MouseButton1Down:connect(function()
  298. mainpage.Visible = false
  299. mini.Visible = true
  300. end)
  301.  
  302. -- Scripts:
  303.  
  304. local function HXRD_fake_script() -- passpage.Dragify
  305. local script = Instance.new('LocalScript', passpage)
  306.  
  307. local UserInputService = game:GetService("UserInputService")
  308.  
  309. local gui = script.Parent
  310.  
  311. local dragging
  312. local dragInput
  313. local dragStart
  314. local startPos
  315.  
  316. local function update(input)
  317. local delta = input.Position - dragStart
  318. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  319. end
  320.  
  321. gui.InputBegan:Connect(function(input)
  322. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  323. dragging = true
  324. dragStart = input.Position
  325. startPos = gui.Position
  326.  
  327. input.Changed:Connect(function()
  328. if input.UserInputState == Enum.UserInputState.End then
  329. dragging = false
  330. end
  331. end)
  332. end
  333. end)
  334.  
  335. gui.InputChanged:Connect(function(input)
  336. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  337. dragInput = input
  338. end
  339. end)
  340.  
  341. UserInputService.InputChanged:Connect(function(input)
  342. if input == dragInput and dragging then
  343. update(input)
  344. end
  345. end)
  346. end
  347. coroutine.wrap(HXRD_fake_script)()
  348. local function EERUFD_fake_script() -- mainpage.Dragify
  349. local script = Instance.new('LocalScript', mainpage)
  350.  
  351. local UserInputService = game:GetService("UserInputService")
  352.  
  353. local gui = script.Parent
  354.  
  355. local dragging
  356. local dragInput
  357. local dragStart
  358. local startPos
  359.  
  360. local function update(input)
  361. local delta = input.Position - dragStart
  362. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  363. end
  364.  
  365. gui.InputBegan:Connect(function(input)
  366. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  367. dragging = true
  368. dragStart = input.Position
  369. startPos = gui.Position
  370.  
  371. input.Changed:Connect(function()
  372. if input.UserInputState == Enum.UserInputState.End then
  373. dragging = false
  374. end
  375. end)
  376. end
  377. end)
  378.  
  379. gui.InputChanged:Connect(function(input)
  380. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  381. dragInput = input
  382. end
  383. end)
  384.  
  385. UserInputService.InputChanged:Connect(function(input)
  386. if input == dragInput and dragging then
  387. update(input)
  388. end
  389. end)
  390. end
  391. coroutine.wrap(EERUFD_fake_script)()
  392.  
  393.  
  394. --- Showcased By BombaFlaty
  395. --- Updated By MeowyMeowth (Me)
  396. --- Added Some Features
  397. --- It Might Be Client Sided But its okay!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement