Advertisement
roadbloxexploiter

JJS Script

Aug 3rd, 2024 (edited)
1,747
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.88 KB | None | 0 0
  1. -- NOTE: None of this entire script is mine. Some guy made a script hub and forgot to obfuscate it so I just made this lol
  2. -- BTW none of the scripts were his anyways
  3. -- okay enough yapping, here's the script (No key system / Discord invite)
  4.  
  5. local ArrayField = loadstring(game:HttpGet("https://raw.githubusercontent.com/Hosvile/Refinement/main/MC%3AArrayfield%20Library"))()
  6. --Documentation url: https://docs.sirius.menu/community/arrayfield
  7.  
  8. local Window = ArrayField:CreateWindow({
  9. Name = "Frost’s Jujitsu sheninagnes Hub💭",
  10. LoadingTitle = "Frost’s Hub 💭",
  11. LoadingSubtitle = "by FrostYT",
  12. ConfigurationSaving = {
  13. Enabled = true,
  14. FolderName = nil, -- Create a custom folder for your hub/game
  15. FileName = "ArrayField"
  16. },
  17. Discord = {
  18. Enabled = false,
  19. Invite = "PcF3FWTGC9", -- The Discord invite code, do not include discord.gg/
  20. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  21. },
  22. KeySystem = false, -- Set this to true to use our key system
  23. KeySettings = {
  24. Title = "Frost’s Hub 💭",
  25. Subtitle = "Key System",
  26. Note = "Join the discord For Key (https://discord.gg/PcF3FWTGC9)",
  27. FileName = "Frost’s Hub key 🔑 ",
  28. SaveKey = True,
  29. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like ArrayField to get the key from
  30. Key = {"Key972",'Key972'},
  31. Actions = {
  32. [1] = {
  33. Text = 'nil',
  34. OnPress = function()
  35. end,
  36. }
  37. },
  38. }
  39. })
  40. local MainTab = Window:CreateTab("Tab Example", nil) -- Title, Image
  41. local MainTab2 = Window:CreateTab("Main 📝") -- Title, Image
  42. local MainSection = MainTab:CreateSection("Scripts 🫶",true) -- The 2nd argument is to tell if its only a Title and doesnt contain element
  43. MainTab:CreateSpacing(nil,10)
  44. local Button = MainTab:CreateButton({
  45. Name = "Fe animations Gui👀",
  46. Info = {
  47. Title = 'Animations 🥶',
  48. Description = 'This gives u all of the animations 🫣',
  49. },
  50. Interact = 'Changable',
  51. Callback = function()
  52. loadstring(game:HttpGet("https://raw.githubusercontent.com/LolnotaKid/Finallyworks/main/Protected.txt"))()
  53. print('Pressed')
  54. end,
  55. })
  56. MainTab:CreateSpacing(nil,10)
  57. local Button = MainTab:CreateButton({
  58. Name = "Flash Black👀",
  59. Info = {
  60. Title = 'Flash Black 😭',
  61. Description = 'This Gives u The Flash Black 🫣',
  62. },
  63. Interact = 'Changable',
  64. Callback = function()
  65. loadstring(game:HttpGet("https://pastebin.com/raw/BUc6QyxB"))()
  66. end,
  67. })
  68.  
  69. MainTab:CreateSpacing(nil,10)
  70. local Button = MainTab:CreateButton({
  71. Name = "Camlock👀",
  72. Info = {
  73. Title = 'Camlock 😭',
  74. Description = 'Lock Onto Player 🫣',
  75. },
  76. Interact = 'Changable',
  77. Callback = function()
  78. loadstring(game:HttpGet("https://pastefy.app/cfMW31sf/raw"))()
  79. end,
  80. })
  81.  
  82. MainTab:CreateSpacing(nil,10)
  83. local Button = MainTab:CreateButton({
  84. Name = "Esp👀",
  85. Info = {
  86. Title = 'Esp 😭',
  87. Description = 'Find Players🫣',
  88. },
  89. Interact = 'Changable',
  90. Callback = function()
  91. --[[
  92. WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk!
  93. ]]
  94. local Players = game:GetService("Players")
  95. local LocalPlayer = Players.LocalPlayer
  96. local PlayerGui = LocalPlayer:WaitForChild("PlayerGui")
  97.  
  98. -- Create ScreenGui
  99. local screenGui = Instance.new("ScreenGui")
  100. screenGui.Parent = PlayerGui
  101.  
  102. -- Create Frame
  103. local frame = Instance.new("Frame")
  104. frame.Size = UDim2.new(0, 200, 0, 150)
  105. frame.Position = UDim2.new(0.5, -100, 0.5, -75)
  106. frame.BackgroundTransparency = 0.5
  107. frame.BackgroundColor3 = Color3.new(0, 0, 0)
  108. frame.Draggable = true
  109. frame.Active = true
  110. frame.Visible = false -- Initially hidden
  111. frame.Parent = screenGui
  112.  
  113. -- Create X-Ray Button
  114. local xrayButton = Instance.new("TextButton")
  115. xrayButton.Size = UDim2.new(0, 180, 0, 50)
  116. xrayButton.Position = UDim2.new(0, 10, 0, 25)
  117. xrayButton.BackgroundColor3 = Color3.new(1, 0, 0)
  118. xrayButton.Text = "Enable X-Ray"
  119. xrayButton.Parent = frame
  120.  
  121. -- Create Disable X-Ray Button
  122. local disableXrayButton = Instance.new("TextButton")
  123. disableXrayButton.Size = UDim2.new(0, 180, 0, 50)
  124. disableXrayButton.Position = UDim2.new(0, 10, 0, 85)
  125. disableXrayButton.BackgroundColor3 = Color3.new(0, 1, 0)
  126. disableXrayButton.Text = "Disable X-Ray"
  127. disableXrayButton.Parent = frame
  128.  
  129. -- Create Open/Close Button
  130. local toggleGuiButton = Instance.new("TextButton")
  131. toggleGuiButton.Size = UDim2.new(0, 100, 0, 50)
  132. toggleGuiButton.Position = UDim2.new(0, 10, 0, 10)
  133. toggleGuiButton.BackgroundColor3 = Color3.new(0, 1, 0)
  134. toggleGuiButton.Text = "Open GUI"
  135. toggleGuiButton.Parent = screenGui
  136.  
  137. local highlights = {}
  138.  
  139. local function highlightPlayers()
  140. for _, player in pairs(Players:GetPlayers()) do
  141. if player ~= LocalPlayer then
  142. local character = player.Character
  143. if character then
  144. local highlight = Instance.new("Highlight")
  145. highlight.Adornee = character
  146. highlight.FillTransparency = 1
  147. highlight.OutlineTransparency = 0
  148. highlight.OutlineColor = Color3.new(1, 0, 0)
  149. highlight.Parent = character
  150. table.insert(highlights, highlight)
  151. end
  152. end
  153. end
  154. end
  155.  
  156. local function removeHighlights()
  157. for _, highlight in pairs(highlights) do
  158. if highlight then
  159. highlight:Destroy()
  160. end
  161. end
  162. highlights = {}
  163. end
  164.  
  165. local function toggleGui()
  166. frame.Visible = not frame.Visible
  167. if frame.Visible then
  168. toggleGuiButton.Text = "Close GUI"
  169. else
  170. toggleGuiButton.Text = "Open GUI"
  171. end
  172. end
  173.  
  174. xrayButton.MouseButton1Click:Connect(function()
  175. highlightPlayers()
  176. xrayButton.Visible = false
  177. disableXrayButton.Visible = true
  178. end)
  179.  
  180. disableXrayButton.MouseButton1Click:Connect(function()
  181. removeHighlights()
  182. xrayButton.Visible = true
  183. disableXrayButton.Visible = false
  184. end)
  185.  
  186. toggleGuiButton.MouseButton1Click:Connect(toggleGui)
  187. end,
  188. })
  189.  
  190. MainTab:CreateSpacing(nil,10)
  191. local Button = MainTab:CreateButton({
  192. Name = "RANDOM COOL GUI👀",
  193. Info = {
  194. Title = 'Cool Gui 😭',
  195. Description = 'Random gui 🫣',
  196. },
  197. Interact = 'Changable',
  198. Callback = function()
  199. loadstring(game:HttpGet("https://raw.githubusercontent.com/LOLking123456/Jujutsu/main/Shenanigans"))()
  200. end,
  201. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement