Advertisement
Runixer

Untitled

Jul 17th, 2019
564
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. local blocks = 50
  2.  
  3. --[[Cyclically's FE Tool Duplicate Tools V3
  4. https://v3rmillion.net/member.php?action...uid=785986
  5.  
  6. %% Don't touch below unless you know what you're doing %%
  7. ]]
  8.  
  9. local LocalPlayer = game:GetService("Players").LocalPlayer
  10. local runservice = game:GetService("RunService")
  11. local characters = {}
  12. LocalPlayer.Character:FindFirstChild("Humanoid"):UnequipTools()
  13. local currentamount = #LocalPlayer.Backpack:GetChildren()
  14. LocalPlayer.Character.Archivable = true
  15. local tempchar = LocalPlayer.Character:Clone()
  16. tempchar.Parent = workspace
  17. local savepos = LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame
  18. local stepped = runservice.Stepped:Connect(function()
  19. workspace.CurrentCamera.CameraSubject = tempchar:FindFirstChild("Humanoid")
  20. for _, tool in pairs(LocalPlayer.Backpack:GetChildren()) do
  21. if tool:IsA("Tool") then
  22. tool.Parent = LocalPlayer
  23. end
  24. end
  25. LocalPlayer.Character:ClearAllChildren()
  26. local char = Instance.new("Model", workspace)
  27. table.insert(characters, char)
  28. Instance.new("Humanoid", char)
  29. LocalPlayer.Character = char
  30. repeat runservice.Stepped:Wait() until LocalPlayer.Character ~= nil
  31. end)
  32. repeat runservice.Stepped:Wait() until #LocalPlayer:GetChildren() - 4 - currentamount >= blocks - 1
  33. stepped:Disconnect()
  34. repeat runservice.Stepped:Wait() until LocalPlayer.Character:FindFirstChild("HumanoidRootPart") ~= nil
  35. for _, char in pairs(characters) do
  36. char:Destroy()
  37. end
  38. for _, tool in pairs(LocalPlayer:GetChildren()) do
  39. if tool:IsA("Tool") then
  40. tool.Parent = LocalPlayer.Backpack
  41. end
  42. end
  43. LocalPlayer.Character:FindFirstChild("HumanoidRootPart").CFrame = savepos
  44. tempchar:Destroy()
  45. local pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  46. for i=1,blocks do
  47. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  48. game.Players.LocalPlayer.Backpack:FindFirstChildOfClass("Tool").Parent = game.Players.LocalPlayer.Character
  49. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Handle.Mesh:Destroy()
  50. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Parent = workspace.Terrain
  51. game:GetService("RunService").Stepped:wait()
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement