4zx16

Tool Pad (Non-Gamepass)

Dec 25th, 2021 (edited)
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. --[[
  2.  || πŸ“œ AUTHOR: @4zx16 || TOOL PAD
  3. ]]
  4.  
  5. local function onTouch(hit)
  6.     local player = game.Players:GetPlayerFromCharacter(hit.Parent)
  7.     local e = false
  8.  
  9.     if player ~= nil then
  10.         if e == false then
  11.             e = true
  12.             game.ReplicatedStorage.Name:Clone().Parent = player:WaitForChild("Backpack")
  13.             wait(1)
  14.             e = false
  15.         end
  16.     end
  17. end
  18. script.Parent.Touched:Connect(onTouch)
Add Comment
Please, Sign In to add comment