Advertisement
Guest User

Untitled

a guest
Jan 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. local level = 80 -- the level you want (there are limits ex. you can't do 9999999 or negative numbers)
  2. local pokemon = "Charmander" -- the pokemon who's level you want to change
  3.  
  4. ----------------------------------------------------------------
  5.  
  6. local randpoke = "Sylveon"
  7. local Move = game.ReplicatedStorage.REvents.PC:FindFirstChild('RemoteForHackers')
  8. local Spawn = game.ReplicatedStorage.REvents.Pokemon:FindFirstChild('iwillknowXd')
  9. local plr = game.Players.LocalPlayer
  10. local loc = plr.PokemonParty[pokemon]
  11.  
  12. Spawn:InvokeServer(randpoke, plr.OppPokemon, level, true)
  13.  
  14. local change = plr.OppPokemon[randpoke]
  15.  
  16. Move:InvokeServer(loc.Lvl, plr.OppPokemon)
  17. Move:InvokeServer(change.Lvl, loc)
  18. change:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement