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

How to make a Points GUI?

Asked by 10 years ago

Anyone know how I can make a GUI show a persons points, and when they collect a special item, they get 10 more points?

0
Please remove the tag "Data Persistence" as your question is not directly relating to actually saving the points. Also, please try to include some code next time. Aethex 256 — 10y
0
I dont know much about scripting dude. But i had to include a tag and why would I add code, im asking someone to help me, i dont know mich code NinjoOnline 1146 — 10y
0
Please read this guideline before posting questions or answers. https://scriptinghelpers.org/blog/posting-good-questions-and-answers-on-scripting-helpers Also, I should mention that the first part of your question is another duplicate. Aethex 256 — 10y

3 answers

Log in to vote
0
Answered by 10 years ago

I would recommend you to put the points in the leaderboard then make the gui to have the number of points you have in the leaderboard.

0
How can I connect the script in the GUI to see the players points though?? NinjoOnline 1146 — 10y
0
local player = script.Parent.Parent.Parent local stats = player:findFirstChild("leaderstats") local Gui = script.Parent local KValue = stats:findFirstChild("KOs") Gui.Text = KValue.Value anthonypjo 5 — 10y
0
Should This Help Confidencebreath 8 — 3y
Ad
Log in to vote
0
Answered by 3 years ago

Is this your answer?

while wait() do 
    local player = game.Players.LocalPlayer
    script.Parent.Text = ""..player:WaitForChild("leaderstats"):FindFirstChild("Points").Value
end

Log in to vote
-2
Answered by 10 years ago

I'm sure there would be free models you can edit.

0
I have checked for a long time, but there seems to be none NinjoOnline 1146 — 10y

Answer this question