Triducal
(Triducal)
April 14, 2024, 3:06am
#41
local event = game.ReplicatedStorage.UpdateInfo
local VN = script.Parent.GameVersion
local FV = script.Parent.FriendFinderVersion
local UN = script.Parent.UpdateName
local BL = script.Parent.BuildLog
event.OnClientEvent:Connect(function(Vers, FrenVers, UpdName, BldLog)
print(Vers, FrenVers, UpdName, BldLog)
VN.Text.Value = Vers
FV.Text.Value = FrenVers
UN.Text.Value = UpdName
BL.Text.Value = BldLog
end)
doing this?
1 Like
so were tryng to get the value of the text of a textlabel? dont think that will work but ill try
mc7oof
(oof)
April 14, 2024, 3:07am
#43
Did you make sure the ScreenGui is inside the StarterGui when you press Play?
and it does not work…
kinda obvious, not trying to be mean
yes i did, i already told you that
Triducal
(Triducal)
April 14, 2024, 3:11am
#46
sorry lol, confused it with something else and my studio isnt opening rn
ah, any other ideas tho???
mc7oof
(oof)
April 14, 2024, 3:12am
#48
Okay, it doesn’t make any sense.
Here is a test file:
Test.rbxl (59.5 KB)
See if you notice any difference between this test file and yours.
just send me the scripts from it, my internet is reallllyyy slow
(40 - 600kbs)
mc7oof
(oof)
April 14, 2024, 3:14am
#50
It is a grand total of 61 KB.
I think that is probably close to what you are sending and receiving right now.
It has a 2 scripts and a RemoteEvent.
bro just send me the scripts, please
If these are constant (the same for every server), then you should just store them in attributes. The client will be able to find them without the help of the server, so use those.
mc7oof
(oof)
April 14, 2024, 3:17am
#53
Sending you the scripts wont help you. But here you go:
local stop = false
repeat
print("Changing")
task.wait(2)
script.RemoteEvent.Value:FireAllClients("Hello from Server")
task.wait(2)
script.RemoteEvent.Value:FireAllClients("...")
until stop == true
The RemoteEvent is an ObjectValue shortcut to the RemoteEvent in ReplicatedStorage:
script.RemoteEvent.Value.OnClientEvent:Connect(function(Message)
print(Message)
script.Parent.TextLabel.Text = Message
end)
1 Like
yeah i could, ill do tat later for right now im gonna go eat. have a good day everyone