~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Hello im gonna show you how to make an Strength Simulator roblox , all the script you have here but read everything! 1.Go to ServiceScriptService and add a Script, after adding a script renamed leaderstats , this option it's very very important! and paste this code:game.Players.PlayerAdded:Connect(function(player) local stats = Instance.new("Folder") stats.Name = "leaderstats" stats.Parent = player local strength = Instance.new("IntValue") strength.Name = "Strength" strength.Value = 0 strength.Parent = stats local cash = Instance.new("IntValue") cash.Name = "Cash" cash.Value = 0 cash.Parent = stats end) 2.Go to workspace and add a script and renamed MainEvent then add RemoteEvent in the Script. After that Rename the RemoteEvent into AddStrength. 3.Go to toolbox and type Weight and select the first one! After spawning the first Weight selected and go to Explorer , open Weight and delete LocalScript and add a new LocalScript.After go to Handle and delete Weld. After deleting LocalScript and add a new one and renamed to AddStrength , and put this code in: script.Parent.Activated:Connect(function() game.Workspace.MainEvent.AddStrength:FireServer() script.Parent.Enabled = false wait(1) script.Parent.Enabled = true end) 4.Move the Weight to StarterPack and ur done with 4! 5.Create a part in WorkSpace and do it like a square and after that renamed SellPart, select and add a script. Put this code in it : local part = script.Parent part.Touched:Connect(function(hit) local h = hit.Parent:FindFirstChild("Humanoid") if h then local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player then local leaderstats = player:WaitForChild("leaderstats") local money = leaderstats.Cash local selling = leaderstats.Strength if selling.Value >= 0 then money.Value = money.Value + selling.Value*1 selling.Value = 0 end end end end) 6.Go to StarterGui and add ScreenGui Renamed Main , add 2 text label and pozitionate the 2 texl label correctly. After that rename the first label Strength and the second one Cash, add local script both of them. Go to Strenght LocalScript and insert this:while wait() do local player = game.Players.LocalPlayer script.Parent.Text = "💪"..player:WaitForChild("leaderstats"):FindFirstChild("Strength").Value end Now the secound one is the Cash localscript , then add this code :while wait() do local player = game.Players.LocalPlayer script.Parent.Text = "💸"..player:WaitForChild("leaderstats"):FindFirstChild("Cash").Value end And should be this the first part! I hope you enjoy and like the video! And sorry for bad english! Have a nice day! :DDD