💬Roblox Chat Commands | How To Make Admin Commands

Sdílet
Vložit
  • čas přidán 22. 06. 2024
  • Want to know how to make Roblox chat commands in Roblox Studio? In this video, we'll show you step-by-step how to create admin commands for your Roblox game.
    -----------------------------
    ❄️Door Model - create.roblox.com/store/asset...
    💖Commands Script - create.roblox.com/store/asset...
  • Hry

Komentáře • 3

  • @BigmeowLord_Games
    @BigmeowLord_Games  Před 14 dny

    Door Open/Close Chat Command Script - "local Door = script.Parent
    Door.Anchored = true
    local ts = game.TweenService
    function Open()
    ts:Create(Door, TweenInfo.new(0.5), {Transparency = 1}):Play()
    Door.CanCollide = false
    end
    function Close()
    ts:Create(Door, TweenInfo.new(0.5), {Transparency = 0}):Play()
    Door.CanCollide = true
    end
    game.Players.PlayerAdded:Connect(function(plr)
    plr.Chatted:Connect(function(msg)
    local message = msg:lower()
    if message == "open door" then
    Open()
    end
    if message == "close door" then
    Close()
    end
    end)
    end)"
    Ty for watching!

  • @kiettran-nk1mi
    @kiettran-nk1mi Před 14 dny

    nice vid

  • @g8829120
    @g8829120 Před 14 dny

    I like this
    Great vid😀