1. Is it against adsense rules to make the 728×90 ad responsive? 2. if not, how do I do it? 3. Is there anything bad about making the 728×90 ad responsive?Read more
1. Is it against adsense rules to make the 728×90 ad responsive? 2. if not, how do I do it? 3. Is there anything bad about making the 728×90 ad responsive?Read more
Gente, eu estou tentando fazer um sistema de rating mas o codigo não vai: local ratingData = game:GetService(“DataStoreService”):GetDataStore(“RatingData”) game.Players.PlayerAdded:connect(function(player) local playerData = {} DataStore ratingData:UpdateAsync(player.userId, function(oldValue) local newValue = oldValue if not newValue then newValue = { Rating = 1500 } end return newValue end) playerData.Score = ratingData:GetAsync(tostring(player.userId)).Rating local leaderstats = Instance.new(“Model”, player) leaderstats.Name =Read more