Advertisement
KashTheKingYT

Tool Server Script

Oct 3rd, 2020 (edited)
596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. --Server Script
  2. local Tool = script.Parent
  3. local Handle = Tool.Handle
  4. local ActivationTime = 1
  5.  
  6. Tool.Activated:Connect(function()
  7.     local Explosion = Instance.new("Explosion", Handle)
  8.     Explosion.Position = Handle.Position
  9.     wait(ActivationTime)
  10.     Explosion:Destroy()
  11. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement