Advertisement
zombieslayerwtf

ProJect JoJo Scripts

Sep 23rd, 2018
26,805
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.10 KB | None | 0 0
  1. project jojo :D
  2. ---Print All Player Stands
  3. local children = game.Players:GetChildren()
  4. for i = 1, #children do
  5. print(i, children[i].Name..":"..children[i].Stand.Value) -----CAN CHANGE STAT VALUE change Stand to stat
  6. end
  7.  
  8.  
  9.  
  10. ---Stats
  11. local children = game.Players.LocalPlayer:GetChildren()
  12. for i = 1, #children do
  13. print(i, children[i].Name)
  14. end
  15.  
  16.  
  17.  
  18. ---Tool Tp Gui
  19. local plr = game.Players.LocalPlayer
  20. local pgui = plr.PlayerGui
  21. local char = plr.Character
  22.  
  23. workspace.ChildAdded:connect(function(thingy)
  24. if thingy.ClassName == "Tool" then
  25. local gui = Instance.new("ScreenGui", pgui)
  26. local NO = Instance.new("TextButton", gui)
  27. local button = Instance.new("TextButton", gui)
  28. button.BorderColor3 = Color3.new(0.9,0,0)
  29. button.BackgroundColor3 = Color3.new(0,0,0)
  30. button.TextWrapped = true
  31. button.Position = UDim2.new(0,35,0,400)
  32. button.TextColor3 = Color3.new(1,1,1)
  33. button.BorderSizePixel = 2
  34. button.Text = thingy.Name.." has spawned, Click to TP"
  35. button.TextSize = 15
  36. button.Font = "Code"
  37. button.Size = UDim2.new(0,133,0,35)
  38.  
  39. NO.BorderColor3 = Color3.new(0.9,0,0)
  40. NO.BackgroundColor3 = Color3.new(0,0,0)
  41. NO.TextWrapped = true
  42. NO.Position = UDim2.new(0,168,0,400)
  43. NO.TextColor3 = Color3.new(1,1,1)
  44. NO.BorderSizePixel = 2
  45. NO.Text = "NO"
  46. NO.TextSize = 15
  47. NO.Font = "Code"
  48. NO.Size = UDim2.new(0,52,0,35)
  49.  
  50. button.MouseButton1Click:connect(function()
  51. char.HumanoidRootPart.CFrame = thingy.Handle.CFrame
  52. NO:Destroy()
  53. button:Destroy()
  54. end)
  55. NO.MouseButton1Click:connect(function()
  56. button:Destroy()
  57. NO:Destroy()
  58. end)
  59. end
  60. end)
  61. print("Loaded")
  62.  
  63.  
  64.  
  65.  
  66. --Farm Stands Needs Moneys
  67.  
  68.  
  69.  
  70.  
  71. STANDO = 'Mr.President' --Stand DATA name here (nospace, still have dot or simbols)
  72.  
  73. local function TryStand(name)
  74. local player = game.Players.LocalPlayer
  75. local Done = false
  76. local HasStand = true
  77. if player:FindFirstChild('Stand').Value == 'None' then HasStand = false end
  78. local function DoThing()
  79. if Done == false then
  80. if HasStand == true then
  81. game.ReplicatedStorage.Logic.giveitem:FireServer('RokakakaFruit')
  82.  
  83. repeat wait() until player.Backpack:FindFirstChild('RokakakaFruit')
  84.  
  85. local Roka = player.Backpack:FindFirstChild('RokakakaFruit')
  86.  
  87. repeat wait() until player:FindFirstChild('Stand').Value == 'None'
  88.  
  89. player.Character.Name = 'hi'
  90.  
  91. game.ReplicatedStorage.Logic.misc:FireServer(20,player)
  92.  
  93. repeat wait() until player.Character.Name == player.Name
  94.  
  95. HasStand = false
  96. elseif HasStand == false then
  97. game.ReplicatedStorage.Logic.giveitem:FireServer('StandArrow')
  98.  
  99. repeat wait() until player.Backpack:FindFirstChild('StandArrow')
  100.  
  101. local Arrow = player.Backpack:FindFirstChild('StandArrow')
  102.  
  103. repeat wait() until player:FindFirstChild('Stand').Value ~= 'None'
  104. print(player:FindFirstChild('Stand').Value)
  105. if player:FindFirstChild('Stand').Value == name then
  106. Done = true
  107. end
  108.  
  109. player.Character.Name = 'hi'
  110.  
  111.  
  112. repeat wait() until player.Character.Name == player.Name
  113.  
  114. HasStand = true
  115. end
  116. end
  117. end
  118.  
  119. repeat DoThing() until Done == true
  120.  
  121. end
  122.  
  123. TryStand(STANDO)
  124.  
  125.  
  126.  
  127. --KONO SPEEDO!
  128. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  129. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 150
  130. game.Players.LocalPlayer.Speed.Value = 10
  131.  
  132.  
  133. --TP TOOLS
  134.  
  135. while wait(2) do
  136. for _,v in pairs(workspace:GetChildren()) do
  137. if v:IsA("Tool") then
  138. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Handle.CFrame
  139. end
  140. end
  141. end
  142. --very abusive auto farm
  143. local P=workspace:FindFirstChildOfClass'Part'
  144.  
  145. local R=game:GetService'ReplicatedStorage':WaitForChild'Logic':WaitForChild'hitbox'
  146. local R2=game:GetService'ReplicatedStorage':WaitForChild'Logic':WaitForChild'misc'
  147. local LP=game:GetService'Players'.LocalPlayer
  148. for _,a in ipairs(workspace:GetChildren())do
  149. if(a:FindFirstChildOfClass'Humanoid'and a.Name~=LP.Name)then
  150. spawn(function()
  151. local Pa=LP.Character:FindFirstChildOfClass'Part'
  152. R:InvokeServer(0,Pa,Pa.CFrame,2e8,LP.Character.Torso.voiceline,a:FindFirstChildOfClass'Humanoid')
  153. end)
  154. end
  155. end
  156. workspace.ChildAdded:Connect(function(a)
  157. wait(.125)
  158. if(a:FindFirstChildOfClass'Humanoid'and a.Name~=LP.Name)then
  159. spawn(function()
  160. repeat wait(.75)until not a:FindFirstChildOfClass'ForceField'
  161. local Pa=LP.Character:FindFirstChildOfClass'Part'
  162. R:InvokeServer(0,Pa,Pa.CFrame,2e8,LP.Character.Torso.voiceline,a:FindFirstChildOfClass'Humanoid')
  163. end)
  164. end
  165. end)
  166. for _,a in ipairs(game:GetService'Players':GetPlayers())do
  167. R2:FireServer(10,a['S/Level'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  168. R2:FireServer(10,a['Level'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  169. R2:FireServer(10,a['Speed'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  170. R2:FireServer(10,a['S/Speed'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  171. R2:FireServer(10,a['Power'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  172. R2:FireServer(10,a['S/Power'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  173. R2:FireServer(10,a['Stand'],'KingCrimson','zxck0d929easjdkadasdji29e9u2es21')
  174. R2:FireServer(10,a['S/Stand'],'KingCrimson','zxck0d929easjdkadasdji29e9u2es21')
  175. R2:FireServer(10,a['Points'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  176. R2:FireServer(10,a['S/Points'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  177. R2:FireServer(10,a['Special'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  178. R2:FireServer(10,a['S/Special'],2e8,'zxck0d929easjdkadasdji29e9u2es21')
  179. end
  180.  
  181.  
  182.  
  183. --Chat gamepass list
  184.  
  185. https://web.roblox.com/game-pass/3667266/Vocal-References
  186.  
  187. JoJo!
  188. Oh No!
  189. Arigato, Gyro
  190. Kono Powa!
  191. Kono Dio Da!
  192. Rero Rero Rero
  193. Did You Seriously Think You Could Stand Up Against Me?
  194. Goodbye JoJo
  195. Niberundayo!
  196. Hinjaku Hinjaku!
  197. Omae Wa Mou Shindeiru
  198. And This Is To Go Even Further Beyond!
  199. AAAAAAAAAA!!!
  200. Ningen
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement