Advertisement
ThanhTuoi

asdsa

Mar 12th, 2019
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.52 KB | None | 0 0
  1. IsFirstPerson = false
  2. CtrlHeld = false
  3. WHeld = false
  4. SHeld = false
  5. AHeld = false
  6. DHeld = false -- LMFAO
  7. local gcheck = true
  8. urspeed = 1
  9.  
  10. local startertools = {}
  11. local autosavetools = true
  12. local toolstosave = {}
  13.  
  14. for _,v in pairs(game.StarterPack:GetChildren()) do
  15. if (v:IsA("Tool")) then
  16. table.insert(startertools,(#startertools+1),v.Name)
  17. end
  18. end
  19.  
  20. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  21.  
  22. local Storing = Instance.new("ScreenGui")
  23. local StoringButton = Instance.new("TextButton")
  24.  
  25. Storing.Name = "Storing"
  26. Storing.Parent = game.CoreGui
  27.  
  28.  
  29.  
  30. StoringButton.Name = "StoringButton"
  31. StoringButton.Parent = Storing
  32. StoringButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  33. StoringButton.BackgroundTransparency = 0.30000001192093
  34. StoringButton.BorderSizePixel = 0
  35. StoringButton.Position = UDim2.new(0.0391057241, 0, 0.826617789, 0)
  36. StoringButton.Size = UDim2.new(0, 83, 0, 34)
  37. StoringButton.Font = Enum.Font.SourceSans
  38. StoringButton.Text = "Not Storing"
  39. StoringButton.TextColor3 = Color3.new(1, 1, 1)
  40. StoringButton.TextSize = 20
  41. StoringButton.TextScaled = true
  42. StoringButton.Draggable = true
  43.  
  44.  
  45.  
  46. function KeepToolsToggle(inputObject, gameProcessedEvent)
  47. if inputObject.KeyCode == Enum.KeyCode.H and gameProcessedEvent == false then
  48. autosavetools = not autosavetools
  49. end
  50. end
  51.  
  52.  
  53.  
  54. game:GetService("UserInputService").InputBegan:connect(KeepToolsToggle)
  55.  
  56.  
  57.  
  58. game:GetService('RunService').Stepped:connect(function()
  59.  
  60.  
  61.  
  62. if autosavetools == true and game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  63. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  64. if (v:IsA("Tool")) then
  65. v.Parent = game.Players.LocalPlayer.Backpack
  66. end
  67. end
  68. wait(0.1)
  69. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  70. for i=1,#startertools do
  71. if (v:IsA("Tool")) and v.Name == startertools[i] then
  72. v:Destroy()
  73. end
  74. end
  75. end
  76.  
  77. wait(0.01)
  78. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  79. if (v:IsA("Tool")) then
  80. v.Parent = game.Players.LocalPlayer
  81. end
  82. end
  83. end
  84.  
  85.  
  86.  
  87. if autosavetools == true then
  88. StoringButton.Text = "Storing"
  89. else
  90. StoringButton.Text = "Not Storing"
  91. end
  92.  
  93. end)
  94.  
  95. game.Players.LocalPlayer.CharacterAdded:connect(function()
  96. wait(0.6)
  97. if autosavetools == true then
  98. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  99. if (v:IsA("Tool")) then
  100. v.Parent = game.Players.LocalPlayer.Backpack
  101. end
  102. end
  103. end
  104.  
  105. end)
  106.  
  107. local stationaryrespawn = true
  108. local needsrespawning = false
  109. local haspos = false
  110. local pos = CFrame.new()
  111.  
  112. local Respawning = Instance.new("ScreenGui")
  113. local RespawningButton = Instance.new("TextButton")
  114.  
  115. Respawning.Name = "Respawning"
  116. Respawning.Parent = game.CoreGui
  117.  
  118.  
  119.  
  120. RespawningButton.Name = "RespawningButton"
  121. RespawningButton.Parent = Respawning
  122. RespawningButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  123. RespawningButton.BackgroundTransparency = 0.30000001192093
  124. RespawningButton.BorderSizePixel = 0
  125. RespawningButton.Position = UDim2.new(0.0391057241, 0, 0.826617789, 0)
  126. RespawningButton.Size = UDim2.new(0, 83, 0, 34)
  127. RespawningButton.Font = Enum.Font.SourceSans
  128. RespawningButton.Text = "Not Returning"
  129. RespawningButton.TextColor3 = Color3.new(1, 1, 1)
  130. RespawningButton.TextSize = 20
  131. RespawningButton.TextScaled = true
  132. RespawningButton.Draggable = true
  133.  
  134.  
  135.  
  136.  
  137. function StatRespawn(inputObject, gameProcessedEvent)
  138. if inputObject.KeyCode == Enum.KeyCode.N and gameProcessedEvent == false then
  139. stationaryrespawn = not stationaryrespawn
  140. end
  141. end
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148. game:GetService("UserInputService").InputBegan:connect(StatRespawn)
  149.  
  150.  
  151.  
  152. game:GetService('RunService').Stepped:connect(function()
  153.  
  154.  
  155. if stationaryrespawn == true and game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  156. if haspos == false then
  157. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  158. haspos = true
  159. end
  160.  
  161. needsrespawning = true
  162. end
  163.  
  164.  
  165. if needsrespawning == true then
  166. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  167. end
  168.  
  169.  
  170. if stationaryrespawn == true then
  171. RespawningButton.Text = "Returning"
  172. else
  173. RespawningButton.Text = "Not Returning"
  174. end
  175.  
  176.  
  177. end)
  178.  
  179. game.Players.LocalPlayer.CharacterAdded:connect(function()
  180. wait(0.6)
  181. needsrespawning = false
  182. haspos = false
  183. end)
  184.  
  185.  
  186.  
  187. local creditsdab = Instance.new("ScreenGui")
  188. local Frame = Instance.new("Frame")
  189. local aidez = Instance.new("ImageLabel")
  190. local names = Instance.new("TextLabel")
  191. local scriptmadeby = Instance.new("TextLabel")
  192. local x = Instance.new("TextButton")
  193.  
  194. creditsdab.Name = "creditsdab"
  195. creditsdab.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  196.  
  197. Frame.Parent = creditsdab
  198. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  199. Frame.Position = UDim2.new(0.399554282, 0, 0.241054624, 0)
  200. Frame.Size = UDim2.new(0, 274, 0, 274)
  201.  
  202. aidez.Name = "aidez"
  203. aidez.Parent = Frame
  204. aidez.BackgroundColor3 = Color3.new(1, 1, 1)
  205. aidez.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  206. aidez.Position = UDim2.new(-0.000740621239, 0, 0.000178694725, 0)
  207. aidez.Size = UDim2.new(0, 274, 0, 274)
  208. aidez.Image = "rbxassetid://0&hash=efa4db7bd06f1c739ec0f631e1b3d7c9"
  209.  
  210. names.Name = "names"
  211. names.Parent = Frame
  212. names.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  213. names.BackgroundTransparency = 0.30000001192093
  214. names.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  215. names.Position = UDim2.new(0, 0, 0.897810221, 0)
  216. names.Size = UDim2.new(0, 274, 0, 28)
  217. names.Font = Enum.Font.SourceSans
  218. names.Text = "Vortexturize | aidez moi | ObitoXDm8OI "
  219. names.TextColor3 = Color3.new(1, 1, 1)
  220. names.TextSize = 14
  221.  
  222. scriptmadeby.Name = "scriptmadeby"
  223. scriptmadeby.Parent = Frame
  224. scriptmadeby.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  225. scriptmadeby.BackgroundTransparency = 0.30000001192093
  226. scriptmadeby.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  227. scriptmadeby.Position = UDim2.new(0, 0, -0.102189779, 0)
  228. scriptmadeby.Size = UDim2.new(0, 274, 0, 28)
  229. scriptmadeby.Font = Enum.Font.SourceSans
  230. scriptmadeby.Text = "Script made by"
  231. scriptmadeby.TextColor3 = Color3.new(1, 1, 1)
  232. scriptmadeby.TextSize = 14
  233.  
  234. x.Name = "x"
  235. x.Parent = creditsdab
  236. x.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  237. x.BackgroundTransparency = 0.30000001192093
  238. x.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  239. x.Position = UDim2.new(0.600445747, 0, 0.188323915, 0)
  240. x.Size = UDim2.new(0, 28, 0, 28)
  241. x.Font = Enum.Font.SourceSansSemibold
  242. x.Text = "X"
  243. x.TextColor3 = Color3.new(1, 1, 1)
  244. x.TextSize = 30
  245.  
  246. x.MouseButton1Click:connect(function()
  247. creditsdab:Destroy()
  248. end)
  249.  
  250.  
  251. function ChangeFaster(inputObject, gameProcessedEvent)
  252. if inputObject.KeyCode == Enum.KeyCode.Minus and gameProcessedEvent == false then
  253. urspeed = urspeed + 0.1
  254. end
  255. end
  256.  
  257.  
  258.  
  259. function ChangeSlower(inputObject, gameProcessedEvent)
  260. if inputObject.KeyCode == Enum.KeyCode.Equals and gameProcessedEvent == false then
  261. urspeed = urspeed - 0.1
  262. end
  263. end
  264.  
  265.  
  266.  
  267. function GChecker(inputObject, gameProcessedEvent)
  268. if inputObject.KeyCode == Enum.KeyCode.K and gameProcessedEvent == false then
  269. if gcheck == false then
  270. gcheck = true
  271. elseif gcheck == true then
  272. gcheck = false
  273. end
  274.  
  275. end
  276. end
  277.  
  278. game:GetService("UserInputService").InputBegan:connect(GChecker)
  279.  
  280.  
  281.  
  282. function PressCtrl(inputObject,gameProcessedEvent)
  283. if inputObject.KeyCode == Enum.KeyCode.LeftControl and gameProcessedEvent == false and gcheck == true then
  284. CtrlHeld = true
  285. end
  286. end
  287.  
  288. function ReleaseCtrl(inputObject,gameProcessed)
  289. if inputObject.KeyCode == Enum.KeyCode.LeftControl then
  290. CtrlHeld = false
  291. end
  292. end
  293.  
  294.  
  295. function PressW(inputObject,gameProcessedEvent)
  296. if inputObject.KeyCode == Enum.KeyCode.W and gameProcessedEvent == false and gcheck == true then
  297. WHeld = true
  298. end
  299. end
  300.  
  301. function ReleaseW(inputObject,gameProcessed)
  302. if inputObject.KeyCode == Enum.KeyCode.W then
  303. WHeld = false
  304. end
  305. end
  306.  
  307. function PressS(inputObject,gameProcessedEvent)
  308. if inputObject.KeyCode == Enum.KeyCode.S and gameProcessedEvent == false and gcheck == true then
  309. SHeld = true
  310. end
  311. end
  312.  
  313. function ReleaseS(inputObject,gameProcessed)
  314. if inputObject.KeyCode == Enum.KeyCode.S then
  315. SHeld = false
  316. end
  317. end
  318.  
  319.  
  320. function PressA(inputObject,gameProcessedEvent)
  321. if inputObject.KeyCode == Enum.KeyCode.A and gameProcessedEvent == false and gcheck == true then
  322. AHeld = true
  323. end
  324. end
  325.  
  326. function ReleaseA(inputObject,gameProcessed)
  327. if inputObject.KeyCode == Enum.KeyCode.A then
  328. AHeld = false
  329. end
  330. end
  331.  
  332.  
  333. function PressD(inputObject,gameProcessedEvent)
  334. if inputObject.KeyCode == Enum.KeyCode.D and gameProcessedEvent == false and gcheck == true then
  335. DHeld = true
  336. end
  337. end
  338.  
  339. function ReleaseD(inputObject,gameProcessed)
  340. if inputObject.KeyCode == Enum.KeyCode.D then
  341. DHeld = false
  342. end
  343. end
  344.  
  345. function CheckFirst(inputObject,gameProcessed)
  346. if inputObject.KeyCode == Enum.UserInputType.MouseWheel then
  347. if (player.Character.Head.CFrame.p - workspace.CurrentCamera.CFrame.p).magnitude < 0.6 then
  348. IsFirstPerson = true
  349. elseif (player.Character.Head.CFrame.p - workspace.CurrentCamera.CFrame.p).magnitude > 0.6 then
  350. IsFirstPerson = false
  351. end
  352. end
  353. end
  354.  
  355. local function enemyfreeze(instance)
  356. for i,v in pairs(instance:GetChildren()) do
  357. lowername = string.lower(v.Name)
  358. if string.find(lowername, "enemyfolder") then
  359. for i,x in pairs(v:GetChildren()) do
  360. for i,y in pairs(x:GetChildren()) do
  361. if y:IsA("BasePart") then
  362. y.Anchored = true
  363. end
  364. end
  365. end
  366.  
  367. end
  368. enemyfreeze(v)
  369. end
  370.  
  371. end
  372.  
  373.  
  374.  
  375.  
  376. local function disarm(instance)
  377. for i,v in pairs(instance:GetChildren()) do
  378. lowername = string.lower(v.Name)
  379. if string.find(lowername, "enemyfolder") then
  380. for i,x in pairs(v:GetChildren()) do
  381. for i,v in pairs(x:GetChildren()) do
  382. lowername = string.lower(v.Name)
  383. if string.find(lowername, "hand") or string.find(lowername, "arm") then
  384. v:Destroy()
  385. end
  386.  
  387. end
  388. end
  389.  
  390. end
  391. disarm(v)
  392. end
  393.  
  394. end
  395.  
  396.  
  397.  
  398.  
  399. function FreezeThineEnemies(inputObject, gameProcessedEvent)
  400. if inputObject.KeyCode == Enum.KeyCode.F and gameProcessedEvent == false then
  401. enemyfreeze(workspace)
  402. end
  403. end
  404.  
  405.  
  406.  
  407.  
  408.  
  409. function QSkill(inputObject, gameProcessedEvent)
  410. if inputObject.KeyCode == Enum.KeyCode.R and gameProcessedEvent == false then
  411. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  412. if v:IsA("Tool") and v:FindFirstChild("abilitySlot") then
  413. if v.abilitySlot.Value == "q" then
  414. v:FindFirstChildWhichIsA("RemoteEvent"):FireServer()
  415. v.cooldown.Changed:Connect(function()
  416. v.cooldown.Value = 0
  417. end)
  418. end
  419. end
  420. end
  421. end
  422. end
  423.  
  424.  
  425.  
  426. function ESkill(inputObject, gameProcessedEvent)
  427. if inputObject.KeyCode == Enum.KeyCode.T and gameProcessedEvent == false then
  428. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  429. if v:IsA("Tool") and v:FindFirstChild("abilitySlot") then
  430. if v.abilitySlot.Value == "e" then
  431. v:FindFirstChildWhichIsA("RemoteEvent"):FireServer()
  432. v.cooldown.Changed:Connect(function()
  433. v.cooldown.Value = 0
  434. end)
  435.  
  436. end
  437. end
  438. end
  439. end
  440. end
  441.  
  442. game.Players.LocalPlayer.CharacterAdded:Connect(function(char)
  443. wait(1)
  444. char.busyCasting.Changed:Connect(function()
  445. char.busyCasting.Value = false
  446. end)
  447. for _,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  448. if (v:IsA("Tool")) then
  449. v.cooldown.Changed:Connect(function()
  450. v.cooldown.Value = 0
  451. end)
  452. end
  453. end
  454. end)
  455.  
  456.  
  457. game.Players.LocalPlayer.Character.busyCasting.Changed:Connect(function()
  458. game.Players.LocalPlayer.Character.busyCasting.Value = false
  459. end)
  460.  
  461.  
  462. local function EnemyTele(instance)
  463. for i,v in pairs(instance:GetChildren()) do
  464. lowername = string.lower(v.Name)
  465. if string.find(lowername, "enemyfolder") then
  466. for i,x in pairs(v:GetChildren()) do
  467. if x:FindFirstChild("HumanoidRootPart") then
  468. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = x.HumanoidRootPart.CFrame * CFrame.new(0,0,3)
  469. end
  470. end
  471.  
  472. end
  473. EnemyTele(v)
  474. end
  475.  
  476. end
  477.  
  478.  
  479. function GotoEnemies(inputObject, gameProcessedEvent)
  480. if inputObject.KeyCode == Enum.KeyCode.G and gameProcessedEvent == false then
  481. EnemyTele(game.Workspace)
  482. end
  483. end
  484.  
  485.  
  486. function Disarment(inputObject, gameProcessedEvent)
  487. if inputObject.KeyCode == Enum.KeyCode.C and gameProcessedEvent == false then
  488. disarm(game.Workspace)
  489. end
  490. end
  491.  
  492.  
  493. function ForceStart(inputObject, gameProcessedEvent)
  494. if inputObject.KeyCode == Enum.KeyCode.Z and gameProcessedEvent == false then
  495. game.ReplicatedStorage.remotes.changeStartValue:FireServer()
  496. end
  497. end
  498.  
  499. local a = false;
  500. local b = settings();
  501. function LagGen(inputObject, gameProcessedEvent)
  502. if inputObject.KeyCode == Enum.KeyCode.X and gameProcessedEvent == false then
  503. a = not a;
  504. b.Network.IncommingReplicationLag = a and 1000 or 0;
  505. end
  506.  
  507. end
  508.  
  509.  
  510. local DuplicationAssistant = Instance.new("ScreenGui")
  511. local Drag = Instance.new("TextButton")
  512. local ID = Instance.new("TextBox")
  513. local Background = Instance.new("ImageLabel")
  514. local AMOUNT = Instance.new("TextBox")
  515. local Background_2 = Instance.new("ImageLabel")
  516. --Properties:
  517. DuplicationAssistant.Name = "DuplicationAssistant"
  518. DuplicationAssistant.Parent = game.CoreGui
  519.  
  520. Drag.Name = "Drag"
  521. Drag.Parent = DuplicationAssistant
  522. Drag.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  523. Drag.BackgroundTransparency = 0.9990000128746
  524. Drag.BorderColor3 = Color3.new(1, 1, 1)
  525. Drag.Draggable = true
  526. Drag.Position = UDim2.new(0.811914742, 0, 0.444252908, 0)
  527. Drag.Size = UDim2.new(0, 99, 0, 42)
  528. Drag.Font = Enum.Font.ArialBold
  529. Drag.Text = ""
  530. Drag.TextColor3 = Color3.new(1, 1, 1)
  531. Drag.TextSize = 14
  532. Drag.TextWrapped = true
  533. Drag.Draggable = true
  534.  
  535. ID.Name = "ID"
  536. ID.Parent = Drag
  537. ID.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  538. ID.BackgroundTransparency = 0.30000001192093
  539. ID.ClipsDescendants = true
  540. ID.Position = UDim2.new(-0.001994133, 0, -0.0176461637, 0)
  541. ID.Size = UDim2.new(0, 100, 0, 21)
  542. ID.Font = Enum.Font.SourceSans
  543. ID.PlaceholderText = "ID"
  544. ID.Text = ""
  545. ID.TextColor3 = Color3.new(1, 1, 1)
  546. ID.TextSize = 14
  547. ID.TextWrapped = true
  548.  
  549. Background.Name = "Background"
  550. Background.Parent = ID
  551. Background.BackgroundColor3 = Color3.new(1, 1, 1)
  552. Background.Position = UDim2.new(-9.90098342e-05, 0, -0.956012964, 0)
  553. Background.Size = UDim2.new(0, 100, 0, 86)
  554. Background.ZIndex = -6
  555. Background.Image = "rbxassetid://0&hash=2396ab74bcae41f2340b198666905246"
  556.  
  557. AMOUNT.Name = "AMOUNT"
  558. AMOUNT.Parent = Drag
  559. AMOUNT.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  560. AMOUNT.BackgroundTransparency = 0.30000001192093
  561. AMOUNT.ClipsDescendants = true
  562. AMOUNT.Position = UDim2.new(-0.00199414324, 0, 0.495451152, 0)
  563. AMOUNT.Size = UDim2.new(0, 100, 0, 21)
  564. AMOUNT.Font = Enum.Font.SourceSans
  565. AMOUNT.PlaceholderText = "AMOUNT"
  566. AMOUNT.Text = ""
  567. AMOUNT.TextColor3 = Color3.new(1, 1, 1)
  568. AMOUNT.TextSize = 14
  569. AMOUNT.TextWrapped = true
  570.  
  571. Background_2.Name = "Background"
  572. Background_2.Parent = AMOUNT
  573. Background_2.BackgroundColor3 = Color3.new(1, 1, 1)
  574. Background_2.Position = UDim2.new(-9.90098342e-05, 0, -1.95601296, 0)
  575. Background_2.Size = UDim2.new(0, 100, 0, 86)
  576. Background_2.ZIndex = -6
  577. Background_2.Image = "rbxassetid://0&hash=2396ab74bcae41f2340b198666905246"
  578.  
  579. function Dup(inputObject, gameProcessedEvent)
  580. if inputObject.KeyCode == Enum.KeyCode.Semicolon and gameProcessedEvent == false then
  581. for i = 1,AMOUNT.Text do
  582. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  583. v.Parent = game.Players.LocalPlayer
  584. wait(0.005)
  585. game.ReplicatedStorage.remotes.unequipItem:InvokeServer("ability", ID.Text)
  586. wait(0.005)
  587. game.ReplicatedStorage.remotes.equipItem:InvokeServer("ability", ID.Text, "e")
  588. wait(0.005)
  589. end
  590. end
  591. for _,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  592. if (v:IsA("Tool")) then
  593. v.Parent = game.Players.LocalPlayer.Backpack
  594. end
  595. end
  596. end
  597. end
  598.  
  599. game:GetService("UserInputService").InputBegan:connect(Dup) -- Semicolon key (;)
  600.  
  601. game:GetService("UserInputService").InputBegan:connect(LagGen) -- X Key
  602.  
  603. game:GetService("UserInputService").InputBegan:connect(ForceStart) -- Z Key (Force start round)
  604.  
  605. game:GetService("UserInputService").InputBegan:connect(Disarment) -- C Key (Removes enemies' arms)
  606.  
  607. game:GetService("UserInputService").InputBegan:connect(GotoEnemies) -- G Key (Goes to a spawned enemy)
  608.  
  609. game:GetService("UserInputService").InputBegan:connect(QSkill) -- R Key (Mass-fires your Q skill)
  610. game:GetService("UserInputService").InputBegan:connect(ESkill) -- T Key (Mass-fires your E skill)
  611.  
  612. game:GetService("UserInputService").InputBegan:connect(FreezeThineEnemies) -- F Key
  613.  
  614. game:GetService("UserInputService").InputBegan:connect(PressCtrl)
  615. game:GetService("UserInputService").InputEnded:connect(ReleaseCtrl)
  616.  
  617. game:GetService("UserInputService").InputBegan:connect(PressW)
  618. game:GetService("UserInputService").InputEnded:connect(ReleaseW)
  619.  
  620. game:GetService("UserInputService").InputBegan:connect(PressS)
  621. game:GetService("UserInputService").InputEnded:connect(ReleaseS)
  622.  
  623. game:GetService("UserInputService").InputBegan:connect(PressA)
  624. game:GetService("UserInputService").InputEnded:connect(ReleaseA)
  625.  
  626. game:GetService("UserInputService").InputBegan:connect(PressD)
  627. game:GetService("UserInputService").InputEnded:connect(ReleaseD)
  628.  
  629. game:GetService("UserInputService").InputChanged:connect(CheckFirst)
  630.  
  631. game:GetService("UserInputService").InputBegan:connect(ChangeFaster)
  632. game:GetService("UserInputService").InputBegan:connect(ChangeSlower)
  633.  
  634.  
  635.  
  636.  
  637. game:GetService('RunService').Stepped:connect(function()
  638. if CtrlHeld == true then
  639.  
  640. if WHeld == true then
  641. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-urspeed)
  642. end
  643.  
  644. if SHeld == true then
  645. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,urspeed)
  646. end
  647.  
  648. if DHeld == true then
  649. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(urspeed,0,0)
  650. end
  651.  
  652. if AHeld == true then
  653. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(-urspeed,0,0)
  654. end
  655.  
  656.  
  657. end
  658. end)
  659.  
  660.  
  661.  
  662.  
  663. print("---------Features---------")
  664. print("")
  665. print("F Key - Freezes all spawned enemies")
  666. print("C Key - Removes the arms of all spawned enemies (Makes enemies inable to hurt you)")
  667. print("G Key - Teleports to a random spawned enemy (Good for blazing through levels)")
  668. print("Z Key - Force start the round (For if you reset at the start of the round to get more skill uses)")
  669. print("R Key - Mass fires your Q move (Assuming you have multiple from reseting)")
  670. print("T Key - Mass fires your E move (Assuming you have multiple from reseting)")
  671. print("Left CTRL Key - Let's you move faster (Like a sprint key)")
  672. print("")
  673. print("Passive Add-ons:")
  674. print("")
  675. print("- The script automatically let's you do multiple skills, or things at once.")
  676. print("So you can use both skills at once, or hit while using them")
  677. print("")
  678. print("- When you reset, you'll gain an extra use on your skill.")
  679. print("This means, if you reset 5 times, you can use your skills an additional 5 times.")
  680. print("")
  681. print("")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement