of     1   

excellentAnarchy
#140972714Sunday, July 20, 2014 7:24 PM GMT

I'm planning on making a badge which would also award Player Points, but then again check the next time if the player still has the badge so he doesn't step on it 10 tiems and get so many points for doing so.
[rfa#hidefromsearch]
#140972824Sunday, July 20, 2014 7:25 PM GMT

[rfa#hidefromsearch]
excellentAnarchy
#140972942Sunday, July 20, 2014 7:26 PM GMT

Then is there any way of preventing this from happening?
EchoingEndlessly
#140973114Sunday, July 20, 2014 7:28 PM GMT

are you asking for scripts or something stop using a badge to prevent someone from something use a value and some data store
excellentAnarchy
#140973795Sunday, July 20, 2014 7:36 PM GMT

I'm willing to give our Player Points while someone finds a badge. And to prevent them from touching it a few times for more points.
[rfa#hidefromsearch]
#140974647Sunday, July 20, 2014 7:45 PM GMT

[rfa#hidefromsearch]
excellentAnarchy
#140976218Sunday, July 20, 2014 8:02 PM GMT

Just adding 2 or three lines into the Point script, but I've never done saving(?)
[rfa#hidefromsearch]
#140976336Sunday, July 20, 2014 8:04 PM GMT

[rfa#hidefromsearch]
bibo5o
#140977675Sunday, July 20, 2014 8:19 PM GMT

Datastore can be quite confusing, Persistent Data is easier to use, but less efficient. Take your pick. http://wiki.roblox.com/index.php?title=Data_Persistence http://wiki.roblox.com/index.php?title=Data_store
C_Sharper
#140978087Sunday, July 20, 2014 8:24 PM GMT

Srry this kinda off the original topic, but Phy, you seem to know what I need to know. I just bumped my post, sooo if you could check it out.
EchoingEndlessly
#140992902Sunday, July 20, 2014 11:03 PM GMT

Data store example: Game.Players.PlayerRemoving:connect(function(Player1) local Data = Game:GetService("DataStoreService"):GetDataStore(Player1.userId); Data:GetAsync(Player.ValueName); end) Game.Players.PlayerAdded:connect(function(Player2) local Data2 = Game:GetService("DataStoreService"):GetDataStore(Player2.userId); Data2:SetAsync(Player.ValueName, Player.ValueName.Value); end)
EchoingEndlessly
#140993104Sunday, July 20, 2014 11:06 PM GMT

You'll need to change the two "Player" words that I left in the parenthesis. Change each to the parameter in it's function
excellentAnarchy
#141001751Monday, July 21, 2014 12:35 AM GMT

I have no idea where to even place this

    of     1