|
| 09 Feb 2016 02:05 AM |
DataStore:SetAsync("Shirt", Data.Shirt.Value)
For some reason this is repeated multiple times throwing an error with the request limit (90). I was wondering what may cause these errors because this is only fired once.
|
|
|
| Report Abuse |
|
|
|
| 09 Feb 2016 02:07 AM |
Button.Join.MouseButton1Click:connect(function(x,y) DataStore:SetAsync("Shirt", Data.Shirt.Value) --wait(1) DataStore:SetAsync("Pants", Data.Pants.Value)-- wait(1) DataStore:SetAsync("Skin", Data.Skin.Value)-- wait(1) Button.Visible = false script.Parent.Launch.Value = true end) |
|
|
| Report Abuse |
|
|
|
| 09 Feb 2016 03:56 AM |
local NeedToSave Button.Join.MouseButton1Click:connect(function(x,y) NeedToSave=true Button.Visible = false script.Parent.Launch.Value = true end) spawn(function() while wait() do if NeedToSave then DataStore:SetAsync("Shirt", Data.Shirt.Value) --wait(1) DataStore:SetAsync("Pants", Data.Pants.Value)-- wait(1) DataStore:SetAsync("Skin", Data.Skin.Value)-- wait(1) wait(25) end end |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 09 Feb 2016 12:15 PM |
| The launch value need to be true after everything has saved but I'll try this. |
|
|
| Report Abuse |
|
|