Advertisement
pa1nx9

Twenty One Pilots Concert Experience - FE KILL GEAR SCRIPT (GRAVITY HAMMER)

Sep 11th, 2021
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. --made by ov3rp0wered#8482
  2. loadstring(game:HttpGet('https://raw.githubusercontent.com/sombolian/scripts/main/Roblox-Event-FE-Gravity-Hammer'))()
  3. local player = game.Players.LocalPlayer
  4. local mouse = player:GetMouse()
  5.  
  6. -- Settings
  7. bind = "x" -- key for dropping the tool
  8. -----------------------------------
  9. mouse.KeyDown:connect(function(key)
  10. if key == bind then
  11. local ToolName = ""
  12. local Counter = 0
  13.  
  14. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  15. if v:IsA("Tool") then
  16. Counter = Counter + 1
  17. ToolName = v.Name
  18. end
  19. end
  20.  
  21. if Counter >= 1 then
  22. local Tool = game.Players.LocalPlayer.Character[ToolName]
  23. Tool.Parent = game.Workspace
  24. warn("Dropped!")
  25. else
  26. warn("No tool was found.")
  27. end
  28. end
  29. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement