Nangin20

Project Pokemon TMs (PokeDollars)

Mar 27th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.54 KB | None | 0 0
  1. Amount = 1 --Change to any amount you want!
  2. b=game.Players.LocalPlayer.Bag
  3. r=game.ReplicatedStorage.REvents
  4. Items = {
  5. TMs = {"Double Team", "Protect", "Return", "Light Screen", "Reflect", "Thunder Wave", "Toxic", "Will-O-Wisp", "Aerial Ace", "Brick Break", "Hidden Power", "Facade", "Psyshock", "Waterfall", "Blizzard", "Fire Blast", "Focus Blast", "Thunder"}
  6. }
  7. for n,t in next,Items do
  8. for _,i in next,t do
  9. if b[n]:FindFirstChild(i)then
  10. r.Internal.funcItem:InvokeServer(b[n][i],Amount)
  11. else r.Pokemon.ozAxZ:InvokeServer(i,b[n],Amount)
  12. end end end
Add Comment
Please, Sign In to add comment