Advertisement
19xjohnnyx

2 Player Anime Tycoon (Money Mod)

Apr 14th, 2022
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.24 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("2 Player Anime Tycoon", "Ocean")
  3. local Tab = Window:NewTab("Money")
  4. local Section = Tab:NewSection("Cash Collector")
  5. Section:NewButton("Infinite Money", "Gives 1B Money", function()
  6. game.ReplicatedStorage.updateCollector:FireServer(1000000000)
  7. end)
  8. local Tab = Window:NewTab("Player")
  9. local Section = Tab:NewSection("Character Mods")
  10. Section:NewButton("E To Noclip", "Press E To Noclip", function()
  11. noclip = false
  12. game:GetService('RunService').Stepped:connect(function()
  13. if noclip then
  14. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  15. end
  16. end)
  17. plr = game.Players.LocalPlayer
  18. mouse = plr:GetMouse()
  19. mouse.KeyDown:connect(function(key)
  20.  
  21. if key == "e" then
  22. noclip = not noclip
  23. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  24. end
  25. end)
  26. print('Loaded')
  27. print('Press "E" to noclip')
  28. end)
  29. Section:NewSlider("Walkspeed", "Set Walkspeed Amount", 250, 0, function(s) -- 500 (MaxValue) | 0 (MinValue)
  30. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  31. end)
  32. Section:NewButton("X To Fly", "Press X To Fly", function()
  33. local plr = game.Players.LocalPlayer
  34. local mouse = plr:GetMouse()
  35.  
  36. localplayer = plr
  37.  
  38. if workspace:FindFirstChild("Core") then
  39. workspace.Core:Destroy()
  40. end
  41.  
  42. local Core = Instance.new("Part")
  43. Core.Name = "Core"
  44. Core.Size = Vector3.new(0.05, 0.05, 0.05)
  45.  
  46. spawn(function()
  47. Core.Parent = workspace
  48. local Weld = Instance.new("Weld", Core)
  49. Weld.Part0 = Core
  50. Weld.Part1 = localplayer.Character.Head
  51. Weld.C0 = CFrame.new(0, 0, 0)
  52. end)
  53.  
  54. workspace:WaitForChild("Core")
  55.  
  56. local torso = workspace.Core
  57. flying = true
  58. local speed=10
  59. local keys={a=false,d=false,w=false,s=false}
  60. local e1
  61. local e2
  62. local function start()
  63. local pos = Instance.new("BodyPosition",torso)
  64. local gyro = Instance.new("BodyGyro",torso)
  65. pos.Name="EPIXPOS"
  66. pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  67. pos.position = torso.Position
  68. gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  69. gyro.cframe = torso.CFrame
  70. repeat
  71. wait()
  72. localplayer.Character.Humanoid.PlatformStand=false
  73. local new=gyro.cframe - gyro.cframe.p + pos.position
  74. if not keys.w and not keys.s and not keys.a and not keys.d then
  75. speed=5
  76. end
  77. if keys.w then
  78. new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  79. speed=speed+0
  80. end
  81. if keys.s then
  82. new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  83. speed=speed+0
  84. end
  85. if keys.d then
  86. new = new * CFrame.new(speed,0,0)
  87. speed=speed+0
  88. end
  89. if keys.a then
  90. new = new * CFrame.new(-speed,0,0)
  91. speed=speed+0
  92. end
  93. if speed>10 then
  94. speed=5
  95. end
  96. pos.position=new.p
  97. if keys.w then
  98. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*0),0,0)
  99. elseif keys.s then
  100. gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*0),0,0)
  101. else
  102. gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  103. end
  104. until flying == false
  105. if gyro then gyro:Destroy() end
  106. if pos then pos:Destroy() end
  107. flying=false
  108. localplayer.Character.Humanoid.PlatformStand=false
  109. speed=10
  110. end
  111. e1=mouse.KeyDown:connect(function(key)
  112. if not torso or not torso.Parent then flying=false e1:disconnect() e2:disconnect() return end
  113. if key=="w" then
  114. keys.w=true
  115. elseif key=="s" then
  116. keys.s=true
  117. elseif key=="a" then
  118. keys.a=true
  119. elseif key=="d" then
  120. keys.d=true
  121. elseif key=="x" then
  122. if flying==true then
  123. flying=false
  124. else
  125. flying=true
  126. start()
  127. end
  128. end
  129. end)
  130. e2=mouse.KeyUp:connect(function(key)
  131. if key=="w" then
  132. keys.w=false
  133. elseif key=="s" then
  134. keys.s=false
  135. elseif key=="a" then
  136. keys.a=false
  137. elseif key=="d" then
  138. keys.d=false
  139. end
  140. end)
  141. start()
  142. end)
  143. local Tab = Window:NewTab("Credits")
  144. local Section = Tab:NewSection("Made By Fade and SluqXz")
  145. local Section = Tab:NewSection("No Discord Avalaible")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement