Advertisement
TheSkibidiOne1

JJS GUI MOVESET SCRIPTS WIP

Feb 11th, 2025 (edited)
252
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.41 KB | None | 0 0
  1. local Players = game:GetService("Players")
  2. local UserInputService = game:GetService("UserInputService")
  3.  
  4. -- Create ScreenGui
  5. local ScreenGui = Instance.new("ScreenGui")
  6. ScreenGui.Name = "AnimationControlGui"
  7. ScreenGui.ResetOnSpawn = false
  8.  
  9. -- Try to parent to PlayerGui, fallback to CoreGui if needed
  10. local success, error = pcall(function()
  11. ScreenGui.Parent = Players.LocalPlayer:WaitForChild("PlayerGui")
  12. end)
  13. if not success then
  14. ScreenGui.Parent = game:GetService("CoreGui")
  15. end
  16.  
  17. -- Create main frame
  18. local MainFrame = Instance.new("Frame")
  19. MainFrame.Name = "MainFrame"
  20. MainFrame.Size = UDim2.new(0, 180, 0, 240)
  21. MainFrame.Position = UDim2.new(0.5, -90, 0.2, 0)
  22. MainFrame.Transparency = 0.2
  23. MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 35)
  24. MainFrame.BorderSizePixel = 0
  25. MainFrame.Active = true
  26. MainFrame.Draggable = true
  27. MainFrame.Parent = ScreenGui
  28.  
  29. -- Round the corners
  30. local UICorner = Instance.new("UICorner")
  31. UICorner.CornerRadius = UDim.new(0, 6)
  32. UICorner.Parent = MainFrame
  33.  
  34. -- Create title bar
  35. local TitleBar = Instance.new("Frame")
  36. TitleBar.Name = "TitleBar"
  37. TitleBar.Size = UDim2.new(1, 0, 0, 30)
  38. TitleBar.Transparency = 0.4
  39. TitleBar.BackgroundColor3 = Color3.fromRGB(40, 40, 45)
  40. TitleBar.BorderSizePixel = 0
  41. TitleBar.Parent = MainFrame
  42.  
  43. -- Round the top corners of title bar
  44. local UICornerTitle = Instance.new("UICorner")
  45. UICornerTitle.CornerRadius = UDim.new(0, 6)
  46. UICornerTitle.Parent = TitleBar
  47.  
  48. -- Create title
  49. local Title = Instance.new("TextLabel")
  50. Title.Name = "Title"
  51. Title.Size = UDim2.new(1, -30, 1, 0)
  52. Title.Position = UDim2.new(0, 10, 0, 0)
  53. Title.BackgroundTransparency = 1
  54. Title.Text = "JJS Character Menu"
  55. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  56. Title.TextSize = 14
  57. Title.Font = Enum.Font.GothamBold
  58. Title.TextXAlignment = Enum.TextXAlignment.Left
  59. Title.Parent = TitleBar
  60.  
  61. -- Create close button
  62. local CloseButton = Instance.new("TextButton")
  63. CloseButton.Name = "CloseButton"
  64. CloseButton.Size = UDim2.new(0, 30, 0, 30)
  65. CloseButton.Position = UDim2.new(1, -30, 0, 0)
  66. CloseButton.BackgroundTransparency = 1
  67. CloseButton.Text = "×"
  68. CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  69. CloseButton.TextSize = 20
  70. CloseButton.Font = Enum.Font.GothamBold
  71. CloseButton.Parent = TitleBar
  72.  
  73. -- Create version label
  74. local VersionLabel = Instance.new("TextLabel")
  75. VersionLabel.Name = "VersionLabel"
  76. VersionLabel.Size = UDim2.new(0, 60, 0, 20)
  77. VersionLabel.Position = UDim2.new(1, -65, 1, -25)
  78. VersionLabel.BackgroundTransparency = 1
  79. VersionLabel.Text = "V1" -- Change this to your version
  80. VersionLabel.TextColor3 = Color3.fromRGB(150, 150, 150)
  81. VersionLabel.TextSize = 12
  82. VersionLabel.Font = Enum.Font.Gotham
  83. VersionLabel.TextXAlignment = Enum.TextXAlignment.Right
  84. VersionLabel.Parent = MainFrame
  85.  
  86. -- Create ScrollingFrame
  87. local ScrollFrame = Instance.new("ScrollingFrame")
  88. ScrollFrame.Name = "ScrollFrame"
  89. ScrollFrame.Size = UDim2.new(1, -10, 1, -40)
  90. ScrollFrame.Position = UDim2.new(0, 5, 0, 35)
  91. ScrollFrame.BackgroundTransparency = 1
  92. ScrollFrame.BorderSizePixel = 0
  93. ScrollFrame.ScrollBarThickness = 4
  94. ScrollFrame.Parent = MainFrame
  95.  
  96. -- Create UIListLayout for automatic button positioning
  97. local ListLayout = Instance.new("UIListLayout")
  98. ListLayout.Parent = ScrollFrame
  99. ListLayout.Padding = UDim.new(0, 2)
  100.  
  101. -- Function to create a button
  102. local function CreateButton(name)
  103. local Button = Instance.new("TextButton")
  104. Button.Name = name
  105. Button.Size = UDim2.new(1, -4, 0, 35)
  106. Button.Position = UDim2.new(0, 2, 0, 0)
  107. Button.BackgroundTransparency = 0.4
  108. Button.BackgroundColor3 = Color3.fromRGB(45, 45, 50)
  109. Button.BorderSizePixel = 0
  110. Button.Text = name
  111. Button.TextColor3 = Color3.fromRGB(255, 255, 255)
  112. Button.TextSize = 14
  113. Button.Font = Enum.Font.Gotham
  114.  
  115. -- Add hover effect
  116. local UICorner = Instance.new("UICorner")
  117. UICorner.CornerRadius = UDim.new(0, 4)
  118. UICorner.Parent = Button
  119.  
  120. Button.Parent = ScrollFrame
  121. return Button
  122. end
  123.  
  124. -- Create KJ button
  125. local KJButton = CreateButton("KJ (Vessel)")
  126.  
  127. -- Add toggle visibility with Left Ctrl
  128. local guiVisible = true
  129. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  130. if input.KeyCode == Enum.KeyCode.LeftControl then
  131. guiVisible = not guiVisible
  132. ScreenGui.Enabled = guiVisible
  133. end
  134. end)
  135.  
  136. -- Add close button functionality (now destroys the GUI)
  137. CloseButton.MouseButton1Click:Connect(function()
  138. ScreenGui:Destroy()
  139. end)
  140.  
  141. -- Place for your animation code
  142. KJButton.MouseButton1Click:Connect(function()
  143. loadstring(game:HttpGet('https://pastebin.com/raw/Swbr2drr'))()
  144. end)
  145.  
  146. local InumakiButton = CreateButton("Inumaki (Gojo)")
  147.  
  148. InumakiButton.MouseButton1Click:Connect(function()
  149. loadstring(game:HttpGet('https://pastebin.com/raw/pPXbc9zn'))()
  150. end)
  151.  
  152. local GokuButton = CreateButton("Goku (Vessel)")
  153.  
  154. GokuButton.MouseButton1Click:Connect(function()
  155. loadstring(game:HttpGet('https://pastebin.com/raw/bvMQi8ZG'))()
  156. end)
  157.  
  158. local Mantisbutton = CreateButton("Mantis (Vessel)")
  159.  
  160. MantisButton.MouseButton1Click:Connect(function()
  161. loadstring(game:HttpGet('https://pastebin.com/raw/0my4erVY'))()
  162. end)
  163.  
  164. local Garoubutton = CreateButton("Garou (Vessel)")
  165.  
  166. GarouButton.MouseButton1Click:Connect(function()
  167. loadstring(game:HttpGet('https://pastebin.com/raw/4eqZjDG9'))()
  168. end)
  169.  
  170. local Vegitobutton = CreateButton("Vegito/Suiryu/Gogeta (Vessel)")
  171.  
  172. VegitoButton.MouseButton1Click:Connect(function()
  173. loadstring(game:HttpGet('https://pastebin.com/raw/ayfCUvhd'))()
  174. end)
  175.  
  176. local Nobarabutton = CreateButton("Nobara (Vessel)")
  177.  
  178. NobaraButton.MouseButton1Click:Connect(function()
  179. loadstring(game:HttpGet('https://pastebin.com/raw/Uve2CznF'))()
  180. end)
  181.  
  182. local Sigmabutton = CreateButton("4NTRAX/Sigma Gojo (Vessel)")
  183.  
  184. SigmaButton.MouseButton1Click:Connect(function()
  185. loadstring(game:HttpGet('https://pastebin.com/raw/stvVnD7Z'))()
  186. end)
  187.  
  188. local Supermanbutton = CreateButton("Superman (Vessel)")
  189.  
  190. SupermanButton.MouseButton1Click:Connect(function()
  191. loadstring(game:HttpGet('https://pastebin.com/raw/gQwbCa28'))()
  192. end)
  193.  
  194. local Okarunbutton = CreateButton("Okarun (Vessel)")
  195.  
  196. OkarunButton.MouseButton1Click:Connect(function()
  197. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nwepnet/blazingflames/refs/heads/main/okarunfinished"))()
  198.  
  199. local Okarun2button = CreateButton("Okarun Idle and Run (Any Character)")
  200.  
  201. OkarunButton2.MouseButton1Click:Connect(function()
  202. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nwepnet/blazingflames/refs/heads/main/idleandrun"))()
  203.  
  204. local KJ2button = CreateButton("Updated KJ (Vessel)")
  205.  
  206. KJ2Button.MouseButton1Click:Connect(function()
  207. loadstring(game:HttpGet("https://pastebin.com/raw/2T1xTVXe"))()
  208.  
  209. local ShinjukuYujibutton = CreateButton("Shinjuku Yuji (Vessel)")
  210.  
  211. ShinjukuYujiButton.MouseButton1Click:Connect(function()
  212. loadstring(game:Httpget("https://pastebin.com/raw/LK0y3dT1"))()
  213.  
  214.  
  215. local ShinjukuYuji2button = CreateButton("Shinjuku Yuji v.2 (Vessel)")
  216.  
  217. ShinjukuYuji2Button.MouseButton1Click:Connect(function()
  218. loadstring(game:HttpGet("https://pastebin.com/raw/edkKRKHW"))()
  219.  
  220. local Brolybutton = CreateButton("Broly (Vessel)")
  221.  
  222. BrolyButton.MouseButton1Click:Connect(function()
  223. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nwepnet/tojijjs/refs/heads/main/BrolyLoader"))()
  224.  
  225. local Tojibutton = CreateButton("Toji (Vessel)")
  226.  
  227. TojiButton.MouseButton1Click:Connect(function()
  228. loadstring(game:HttpGet("https://pastebin.com/raw/ZY5DzHmf"))()
Advertisement
Comments
  • TheSkibidiOne1
    125 days
    # text 0.51 KB | 0 0
    1. So far the gui contains moveset scripts with the following characters:
    2.  
    3. 2 KJ's (1 with VFX and slightly better animations)
    4. INUMAKI
    5. GOKU
    6. MANTIS (tko mantis guy idk)
    7. GAROU
    8. VEGITO
    9. GOGETA
    10. SUIRYU
    11. NOBARA
    12. SIGMA CHARACTER (Mainly out of place VFX, but decent animations)
    13. SUPERMAN (Really just a fly script)
    14. 2 OKARUN's (1 with moves, 1 that changes the idle and walk/run animation)
    15. IDLE/WALK+RUN ANIMATION CHANGER
    16. BROLY
    17. TOJI (no weapons or vfx yet sadly)
    18.  
    19. IF MHMSOCOOL OR ANY OTHER SCRIPTER IS READING THIS UNBAN ME FN
Add Comment
Please, Sign In to add comment
Advertisement