SHOW:
|
|
- or go back to the newest paste.
| 1 | local rp = game.ReplicatedStorage | |
| 2 | local shopEvent = rp.Remotes.Shop | |
| 3 | ||
| 4 | ||
| 5 | local speedID = 172426673 | |
| 6 | ||
| 7 | ||
| 8 | local function Shop(player, id) | |
| 9 | if id == speedID then | |
| 10 | player.Character.Humanoid.WalkSpeed = 32 | |
| 11 | end | |
| 12 | end | |
| 13 | ||
| 14 | ||
| 15 | shopEvent.OnServerEvent:Connect(Shop) |