Advertisement
PresidentIvan

ROBLOX Tool That's Only In Your Backpack Script

Jan 29th, 2019
3,711
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. --[[ This is a script that makes a tool to be in your backpack only if you put your name in this script. You can add more people to this script and they’ll have the tool as well in their backpacks. Put a tool in StarterGui! Make sure it’s spelt exactly as in the script and your name must be spelt exactly. And put this script also in StarterGui. ]]--
  2.  
  3. local player = game.Players.LocalPlayer
  4. local tool = script.Parent
  5.  
  6. if player.Name == “YOUR NAME” then
  7. local toolio = player.PlayerGui:WaitForChild(“TOOL NAME”)
  8. toolio.Parent = player.Backpack
  9. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement