YikesTomJoin Date: 2011-01-04 Post Count: 335 |
So i'm looking for a scripter who can create and have a working data store for weapons and tools,
This means if i :give username sword (or anyother tool). They then keep this sword, They keep it wether they die, Or rejoin or join another server.
I'm sure this fits in to the script but if i :remove username sword then there "data" of having a sword is removed?
I tried trying to learn and do this myself, But i'm not very good at scripting. The pay is rather high 400+ robux, As i believe it is a quick job.
Friend/message or reply back if your willing to do this job for me,
|
|
|
Believe it or not it is much harder than you think.
We wish it was that simple but it isn't.
I say 560 robux and I do it. |
|
|
This is pretty complicated, I am a mid-class scripter, and I don't even know how to do this, I can do a data store for a level system, but only when it's premade.
Zyah boi FinalSource |
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
If anyones willing to do this for 500 robux contact me, Can do payments today.
|
|
|
I do it.
May I see proof that you got 500 robux? |
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
^ Add me,
|
|
|
i can do this for free lmao
this isnt complicated
Funds#9396 |
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump still need someone for this, Since everyone just doesn't reply
vv
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
still bumping this
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump, need it done in an hour or two.
|
|
|
Use a free model if you need one so badly
Nobody can script one in just 2 hours
https://www.roblox.com/library/289054567/Rick-and-Morty-Goodbye-Moonmen |
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump
I need this done quickly.
Free model scripts are fine if they work
550 robux is the offer,
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump
|
|
|
|
Isnt complicated but it seems as if u got some other people
print(string.reverse("")) |
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
i really don't
everyone fails,gives up, doesnt reply or just leaves
bump
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump
paying 700 robux now i just need this done
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump
|
|
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
Now offering 800 robux for this, to be completed in an hour or two
|
|
catgogo5Join Date: 2010-08-08 Post Count: 2661 |
Scripts =
Easy in theory, if you have an understanding of code.
But hard to make by hand, despite knowing it.
~
The Conquerors 3 Wiki Discord Code: F3K5NBU |
|
YikesTomJoin Date: 2011-01-04 Post Count: 335 |
bump
|
|
|
local ds = game:GetService("DataStoreService"):GetDataStore("ToolSave") game.Players.PlayerAdded:connect(function(plr) local key = "id-"..plr.userId pcall(function() local tools = ################ if tools then for i,v in pairs(tools) do local tool = game.ServerStorage.Tools:FindFirstChild(v) if tool then tool:Clone().Parent = plr:WaitForChild("Backpack") tool:Clone().Parent = plr:WaitForChild("StarterGear") end end end end) end) game.Players.PlayerRemoving:connect(function(plr) local key = "id-"..plr.userId pcall(function() local toolsToSave = {} for i,v in pairs(plr.Backpack:GetChildren()) do if v then table.insert(toolsToSave,v.Name) end end ds:SetAsync(key,toolsToSave) end) end) |
|