naser2345

test

Sep 18th, 2020 (edited)
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. --+ Made By Naser +--
  2.  
  3. -- Global Variables
  4. _G.On = true
  5. local player = game.Players.LocalPlayer
  6. local hum = player.Character.Humanoid
  7.  
  8.  
  9. -- Creates Punch Bags Teleport Part
  10. local TPpart = Instance.new("Part", game.Workspace)
  11. TPpart.Name = "PunchBag"
  12. TPpart.Size = Vector3.new(1,1,1)
  13. TPpart.Transparency = 1
  14. TPpart.CanCollide = false
  15. TPpart.Position = Vector3.new(-85.797, 11.31055, -493.893)
  16. TPpart.CFrame = TPpart.CFrame * CFrame.Angles(math.rad(-90),0,math.rad(-90))
  17. TPpart.Anchored = true
  18. -- Creates Gloves Teleport Part
  19. local GLpart = Instance.new("Part", game.Workspace)
  20. GLpart.Name = "Gloves"
  21. GLpart.Transparency = 1
  22. GLpart.Size = Vector3.new(1,1,1)
  23. GLpart.Position = Vector3.new(-88.0477, 6.05004, -476.289)
  24. GLpart.CanCollide = false
  25. GLpart.Anchored = true
  26.  
  27.  
  28.  
  29. -- Hide Identity of the player
  30. game.Players.LocalPlayer.Character.Head:Destroy()
  31. game.Players.LocalPlayer.Character["Left Leg"]:Destroy()
  32. game.Players.LocalPlayer.Character["Right Leg"]:Destroy()
  33. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  34. if v:IsA("Clothing") or v:IsA("ShirtGraphic") then
  35. v:Destroy()
  36. end
  37. end
  38. wait(2)
  39. game.Players.LocalPlayer.Character.Torso.Anchored = true
  40. game.Players.LocalPlayer.Character.Torso.Anchored = false
  41. -- Teleport Bypass Function
  42. function tpPlayer(partToTeleport)
  43.  
  44. game.Players.LocalPlayer.Character.Torso.Anchored = false
  45. game:GetService("ReplicatedStorage").Dash:InvokeServer(0)
  46. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = partToTeleport.CFrame
  47. game.Players.LocalPlayer.Character.Torso.Anchored = true
  48.  
  49. end
  50.  
  51.  
  52.  
  53. -- Main Farm script
  54.  
  55. while wait() do
  56.  
  57.  
  58. if player.Backpack:FindFirstChild("Gloves") then
  59. hum:EquipTool(player.Backpack:FindFirstChild("Gloves"))
  60. game.Workspace[player.Name].Gloves:Activate()
  61. wait(1)
  62. tpPlayer(TPpart)
  63. wait()
  64. tpPlayer(TPpart)
  65. wait()
  66. hum:EquipTool(player.Backpack:FindFirstChild("Combat"))
  67. repeat
  68. game.Workspace[player.Name].Combat:Activate()
  69. wait(.45)
  70. until (not player.Backpack:FindFirstChild("Gloves"))
  71. else
  72.  
  73. tpPlayer(GLpart)
  74. wait(1)
  75. fireclickdetector(game:GetService("Workspace").Items.Gloves.ClickDetector)
  76. wait(.5)
  77.  
  78. end
  79.  
  80. end
  81.  
Add Comment
Please, Sign In to add comment