mulJR
|
  |
| Joined: 25 Dec 2012 |
| Total Posts: 305 |
|
|
| 30 Jan 2015 08:26 PM |
| Script doesn't work. Help? |
|
|
| Report Abuse |
|
|
mulJR
|
  |
| Joined: 25 Dec 2012 |
| Total Posts: 305 |
|
| |
|
mulJR
|
  |
| Joined: 25 Dec 2012 |
| Total Posts: 305 |
|
|
| 30 Jan 2015 08:47 PM |
| Should make a new post but last attempt bump |
|
|
| Report Abuse |
|
|
ByDefault
|
  |
| Joined: 25 Jul 2014 |
| Total Posts: 3197 |
|
|
| 01 Feb 2015 05:53 AM |
Use this:
local id = 208731388 local speed = 25 game.Players.PlayerAdded:connect(function(plr) if game:GetService("MarketPlaceService"):PlayerHasPass(plr, id) then plr.Character.Humanoid.WalkSpeed = speed end end) |
|
|
| Report Abuse |
|
|
|
| 01 Feb 2015 05:59 AM |
^ Only works on first spawn, also it's MarketplaceService, not MarketPlaceService.
local gpid = 208731388 local speed = 25
game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(char) if game:GetService("MarketplaceService"):PlayerOwnsAsset(player, gpid) then char:WaitForChild("Humanoid").WalkSpeed = speed end end) end) |
|
|
| Report Abuse |
|
|