ethanlaj
|
  |
| Joined: 17 Nov 2015 |
| Total Posts: 922 |
|
|
| 25 Jul 2016 06:59 AM |
Players = game:GetService("Players") GamePassService = game:GetService("MarketplaceService") PassId = 463912717 Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Character) if GamePassService:PlayerHasPass(Player.userId, PassId) then Spawn (function()) script.Parent.Parent.CameraMaxZoomDistance=400 end end end |
|
|
| Report Abuse |
|
|
|
| 25 Jul 2016 07:01 AM |
You are forgetting some of the brackets (Not an expert scripter, but I have noticed that.)
Join the unofficial game design group, https://www.roblox.com/My/Groups.aspx?gid=2862545 |
|
|
| Report Abuse |
|
|
ethanlaj
|
  |
| Joined: 17 Nov 2015 |
| Total Posts: 922 |
|
| |
|
|
| 25 Jul 2016 07:12 AM |
Isn't it obvious, you haven't closed them.
Join the unofficial game design group, https://www.roblox.com/My/Groups.aspx?gid=2862545 |
|
|
| Report Abuse |
|
|
|
| 25 Jul 2016 07:23 AM |
Players = game:GetService("Players") GamePassService = game:GetService("MarketplaceService") PassId = 463912717 Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Character) if GamePassService:PlayerHasPass(Player.userId, PassId) then Spawn (function()) script.Parent.Parent.CameraMaxZoomDistance=400 end) end end)
|
|
|
| Report Abuse |
|
|
|
| 25 Jul 2016 07:24 AM |
Players = game:GetService("Players") GamePassService = game:GetService("MarketplaceService") PassId = 463912717 Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Character) if GamePassService:PlayerHasPass(Player.userId, PassId) then Spawn (function()) script.Parent.Parent.CameraMaxZoomDistance=400 end) end) end)
|
|
|
| Report Abuse |
|
|