Roblox Studio Indonesia : Bahasa LUA - Remote Event - Server to Client

Subscribers:
15,900
Published on ● Video Link: https://www.youtube.com/watch?v=fhDO1s9_DWk



Roblox
Game:
Roblox (2006)
Duration: 6:42
201 views
5


Di video kali ini saya akan menjelaskan mengenai remote event, khususnya dari Server - Client, disini saya membuat contoh mengenai Welcome Message. Yang mungkin dapat anda pakai di game anda.

Please Like, dan Bunyikan Bel nya and Subscribe :)


Script yang dipakai :
Server Script Service :
local label = script.Parent
local rs = game:GetService("ReplicatedStorage")
local re = rs:WaitForChild("RemoteEvent")
local frame = label.Parent


local function infoPlayer(name)
label.Text = 'Selamat Datang ' .. name
wait(4)
frame.Visible = false
end

re.OnClientEvent:Connect(infoPlayer)



TextLabel Script :
local label = script.Parent
local rs = game:GetService("ReplicatedStorage")
local re = rs:WaitForChild("RemoteEvent")
local frame = label.Parent


local function infoPlayer(name)
label.Text = 'Selamat Datang ' .. name
wait(4)
frame.Visible = false
end

re.OnClientEvent:Connect(infoPlayer)







Tags:
remote event server to client
remote event dari server ke klien
roblox studio buat welcome screen



Other Statistics

Roblox Statistics For Roblox Studio Indonesia

Roblox Studio Indonesia currently has 1,259,838 views spread across 247 videos for Roblox. There's over 2 days worth of watchable video for Roblox published on his channel, or 92.89% of the total watchable video on Roblox Studio Indonesia's YouTube channel.