This won't save, I can make it so the players name prints, but I don't know how to make that printed name go into the text on the gui (A in game purchase logging gui)
Note: Other people have to see it! not developer console (Unless you can make it work)!
I have no idea where to start, this is all I have so far.. And there are no tutorials online
1 | script.Parent.Touched:connect( function (part) |
2 | if part.Parent:FindFirstChild( "Humanoid" ) then |
3 | print ( "Purchased (Pistol 375$) " ..part.Parent.Name) |
4 | end |
5 | end ) |
6 | wait ( 1 ) |
^ ^ That prints it into the developer console, but Only I can see it, I want people with the GUI to be able to see it, considering you can't give perms for that.
Put this in your server script when the item is touched and purchased. You may want to fire a separate event of course for the actual purchase - I'd do a server function for that.
01 | local AnnoucementEvent = Instance.new( "RemoteEvent" ,game.ReplicatedStorage) |
02 | AnnoucementEvent.Name = "GameToClientGuiEvent" |
03 | local istouched = false |
04 | script.Parent.Touched:connect( function (part) |
05 |
06 | if istouched = = false then |
07 | istouched = true |
08 | if part.Parent:FindFirstChild( "Humanoid" ) then |
09 | print ( "firing the annoucement event" ) |
10 | local player = game.Players:GetPlayerFromCharacter(part.Parent) |
11 | local message = player.Name.. " bought the item!!!!" |
12 |
13 | AnnoucementEvent:FireAllClients(message) |
14 |
15 | end |
Then in a localscript under StarterPlayerScripts (I named mine PlayerAnnoucements)
01 | local AnnoucementEvent = game.ReplicatedStorage:WaitForChild( "GameToClientGuiEvent" , 10 ) |
02 | local Player = game.Players.LocalPlayer |
03 | local GUI = Player.PlayerGui |
04 | local AnnoucementScreenGui = Instance.new( "ScreenGui" ) |
05 | AnnoucementScreenGui.Name = "AnnoucementScreenGui" |
06 | AnnoucementScreenGui.Parent = GUI |
07 |
08 |
09 | local AnnounementFrame = Instance.new( "Frame" ) |
10 | AnnounementFrame.Name = "AnnounementFrame" |
11 | AnnounementFrame.Position = UDim 2. new( 1 ,- 500 , 0 , 0 ) |
12 | AnnounementFrame.Size = UDim 2. new( 0 , 500 , 0 , 50 ) |
13 | AnnounementFrame.BackgroundTransparency = . 5 |
14 | AnnounementFrame.Parent = AnnoucementScreenGui |
15 |
There's plenty of room for improvement.. you may want to append the message....
I would have the AnnoucementFrame and Text elements already preset under StarterGui and so all the script has to do is set the Text value.. but I'll leave the rest to you to figure out... Let me know if you need more help.