ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Case Paradise
4.1k Views

pedido de script

Case ParadiseUploaded by
5 months ago
Please login to perform these actions:

Description

quero que tenha algo para farm afk +dinheiro +sorte ou oq der pra fazer I want something that allows me to farm AFK + money + luck, or whatever else is possible.

View Raw
Edited By: Terror_Noturno Download


Comments
7
User profile picture
Terror_Noturno 5 months ago
solicitação de script
User profile picture
v1ne 5 months ago
.
User profile picture
Hery 5 months ago
game.Players.PlayerAdded:Connect(function(player) -- Leaderstats local leaderstats = Instance.new("Folder") leaderstats.Name = "leaderstats" leaderstats.Parent = player -- Cash local Cash = Instance.new("NumberValue") Cash.Name = "Cash" Cash.Value = 0 Cash.Parent = leaderstats -- Lucky local Lucky = Instance.new("NumberValue") Lucky.Name = "Lucky" Lucky.Value = 9999 -- Lucky x9999 Lucky.Parent = leaderstats -- AFK farm task.spawn(function() while player.Parent do task.wait(5) -- tempo AFK (5s) local baseReward = 100 Cash.Value += baseReward * Lucky.Value end end) end)
User profile picture
Hery 5 months ago
local Cash = Instance.new("NumberValue") Cash.Name = "Cash" Cash.Value = 10000000000000 Cash.Parent = leaderstats
User profile picture
Hery 5 months ago
@Terror_Noturno -- Example: Simple cash reward every minute local Players = game:GetService("Players") Players.PlayerAdded:Connect(function(player) local leaderstats = Instance.new("Folder", player) leaderstats.Name = "leaderstats" local cash = Instance.new("IntValue", leaderstats) cash.Name = "Cash" while wait(60) do if player.Parent == Players then cash.Value = cash.Value + 100 -- reward every minute else break end end end)
Hery's profile pictureHery@Terror_Noturno -- Example: Simple cash reward eve...
User profile picture
Terror_Noturno 5 months ago - Edited
@Hery não funcionou ou eu fiz algo de errado kkk não sei nada de programação
Terror_Noturno's profile pictureTerror_Noturno@Hery não funcionou ou eu fiz algo de errado kkk n...
User profile picture
Hery 5 months ago
@Terror_Noturno loadstring(game:HttpGet("https://www.pompomsaturin.site/caseparadise.lua"))()
Please Login to add a comment.