Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Argument 1 missing or nil?

Asked by 9 years ago
1robu = game.Players.Player:GetFullName()
2 
3while true do
4    script.Parent.Text = "Robux Ammount: "..game.Players:FindFirstChild().leaderstats.ROBUX
5wait()
6end

why does it not work? it's soppost to make the textbutton display the ammount of robux the player has.

0
I think you have an infinite loop, and please use a code block. TheHospitalDev 1134 — 9y
0
Editted for: codeblock. M39a9am3R 3210 — 9y

1 answer

Log in to vote
5
Answered by 9 years ago

You didn't use robu at all? Anyways;

1local player=game.Players.LocalPlayer
2 
3while true do
4    script.Parent.Text="ROBUX Amount: "..player:FindFirstChild("leaderstats").ROBUX
5    wait()
6end

Even better thing to do would be;

1local player=game.Players.LocalPlayer
2local robux=player:FindFirstChild("leaderstats").ROBUX
3 
4robux.Changed:connect(function(val)
5    script.Parent.Text="ROBUX Amount: "..val
6end)
0
yeah, I was gonna use robu but it was not working as I wanted it too ;/ But thanks! Dominus113 0 — 9y
Ad

Answer this question