Sword Fight Zone | Roblox Studio Tutorial

Поделиться
HTML-код
  • Опубликовано: 7 сен 2024
  • -- SOCIAL --
    Roblox Profile : www.roblox.com...
    Roblox Group : www.roblox.com...
    Discord : / discord
    TikTok : / plehlowla

Комментарии • 9

  • @FurMiauLovesCats
    @FurMiauLovesCats 24 дня назад

    Your tutorials save my life 🙏🙏

  • @demigodxorvo1000
    @demigodxorvo1000 19 дней назад

    Good sh man!!

  • @traianrose316
    @traianrose316 10 дней назад +1

    I spent 20 mins doing this so you don't have to:
    local RR = game:GetService('ReplicatedStorage')
    local Zone = require(RR.Zone)
    local fightzone = Zone.new(workspace.Part)

    fightzone.playerEntered:Connect(function(player)
    print(("%s entered the zone!"):format(player.Name))

    if not player.Backpack:FindFirstChild('ClassicSword') and not player.Character:FindFirstChild('ClassicSword') then

    local sword = RR.ClassicSword:Clone()
    sword.Parent = player.Backpack

    end
    end)
    fightzone.playerExited:Connect(function(player)
    print(("%s exited the zone!"):format(player.Name))

    for _, tool in pairs(player.Backpack:GetChildren()) do
    if tool:IsA('Tool') and tool.Name == 'ClassicSword' then
    tool:Destroy()
    end
    end
    for _, tool in pairs(player.Character:GetChildren()) do
    if tool:IsA('Tool') and tool.Name == 'ClassicSword' then
    tool:Destroy()
    end
    end

    end)

  • @YeahImHover
    @YeahImHover Месяц назад

    underrated bro

  • @xzSeer
    @xzSeer Месяц назад

    keep up the grind bro

  • @demigodxorvo1000
    @demigodxorvo1000 19 дней назад

    But how do I make the little arrow things

    • @Plehlowla
      @Plehlowla  18 дней назад

      little arrow things?

    • @traianrose316
      @traianrose316 10 дней назад

      @@Plehlowla i think hes talking about in script arrows are pointing towards code