|
| 28 Jul 2014 12:26 PM |
I've been wanting to add Player Points to my game, a system in which you points by collecting tokens, but I never got how to make that work.
Yes, I've read the wiki article, and it didn't help. |
|
|
| Report Abuse |
|
|
SpikyHawk
|
  |
| Joined: 23 Apr 2011 |
| Total Posts: 6977 |
|
| |
|
| |
|
Molarity
|
  |
| Joined: 16 Feb 2014 |
| Total Posts: 1043 |
|
|
| 28 Jul 2014 12:30 PM |
developer products or gamepasses
Molarity=moles solute/liters solution |
|
|
| Report Abuse |
|
|
| |
|
Gantic
|
  |
| Joined: 13 May 2011 |
| Total Posts: 49014 |
|
|
| 28 Jul 2014 12:34 PM |
take this
http://www.roblox.com/Playerpoints-Pack-item?id=161710193
it helped me |
|
|
| Report Abuse |
|
|
| |
|
|
| 28 Jul 2014 12:39 PM |
| actually i was thinking something of a coin/token system. like marble rider. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
| |
|
unit6666
|
  |
| Joined: 05 Oct 2013 |
| Total Posts: 231 |
|
|
| 28 Jul 2014 01:01 PM |
| Bump? GLITC GLITCH (FAIL) I care this much () |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 28 Jul 2014 02:52 PM |
| You should move this post to Game Creation and Development > Building/Scripting Helpers. That is where you can most likely get more help. |
|
|
| Report Abuse |
|
|
|
| 28 Jul 2014 02:54 PM |
ok.
usually the mods will move this thread. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
Jupiturd
|
  |
| Joined: 16 Jul 2013 |
| Total Posts: 1157 |
|
|
| 28 Jul 2014 03:03 PM |
Check this out it might help you
http://wiki.roblox.com/index.php?title=Points_tutorial |
|
|
| Report Abuse |
|
|
|
| 28 Jul 2014 03:04 PM |
| Thanks for the link Jupiturd, you beat me to it. |
|
|
| Report Abuse |
|
|
| |
|
|
| 29 Jul 2014 05:30 PM |
while wait(5) do b=Instance.new("Part",Workspace) Instance.new("CylinderMesh",b).Scale=Vector3.new(1,1,1) b.BrickColor=BrickColor.Yellow() b.TopSurface="Smooth" b.BottomSurface="Smooth" b.Touched:connect(function(hit) if game.Players:findFirstChild(hit.Parent.Name) game:GetService("PointsService"):AwardPoints(game.Players[hit.Parent.Name].userId,5) end end) end
Put this in a serverscript in Workspace |
|
|
| Report Abuse |
|
|
| |
|