Hello, I was scripting a surface gui. The surface gui is a kiosk for my aracde card. Heres the script. If you need more info ask in the answer thing.
1 | playername = script.Parent.Parent.Parent.Parent.Parent.PlayerName.Value |
2 | script.Parent.MouseButton 1 Click:Connect( function () |
3 | script.Parent.Parent.Parent.Tickets.Ticket.Text = game.Players:FindFirstChild(playername).Backpack.Card.Tickets.Value |
4 | script.Parent.Parent.Parent.Buttons.Visible = false |
5 | script.Parent.Parent.Parent.Tickets.Visible = true |
6 | end ) |
Assuming that you're trying to get the player's name who clicked on the button:
1 | script.Parent.MouseButton 1 Click:Connect( function (player) --you can get the player who clicked it |
2 | script.Parent.Parent.Parent.Tickets.Ticket.Text = |
3 | player.Backpack.Card.Tickets.Value |
4 | script.Parent.Parent.Parent.Buttons.Visible = false |
5 | script.Parent.Parent.Parent.Tickets.Visible = true |
6 | end ) |
Remember, in all variables use local VARIABLE
not VARIABLE
the local
is more efficient
For first, you can get the player with game:GetService("Players").LocalPlayer
(Only works in LocalScript), and you can simple use player:WaitForChild("Backpack").Card.Tickets.Value
. And use player:WaitForChild("Backpack")
for no errors.
You can see of WaitForChild here: Roblox Wiki - WaitForChild
You can use this:
1 | local player = game:GetService( "Players" ).LocalPlayer |
2 | player:WaitForChild( "Backpack" ) |
3 |
4 | script.Parent.MouseButton 1 Click:Connect( function () |
5 | script.Parent.Parent.Parent.Tickets.Ticket.Text = player:WaitForChild( "Backpack" ).Card.Tickets.Value |
6 | script.Parent.Parent.Parent.Buttons.Visible = false |
7 | script.Parent.Parent.Parent.Tickets.Visible = true |
8 | end ) |
Hope it helped! :)