Safe Zone - Roblox Studio Beginners Scripting Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 28 พ.ย. 2024

ความคิดเห็น • 99

  • @Pyxrien
    @Pyxrien  3 ปีที่แล้ว +4

    Thanks for watching!
    Use this comment for video ideas/feedback ;)

    • @miniolas8293
      @miniolas8293 3 ปีที่แล้ว

      when i leave the forcefield doesnt Destroy

    • @NiNER0NiN
      @NiNER0NiN 2 ปีที่แล้ว

      so.. i tried this and as soon as i was done copying down my script my safezone disappeared. like it was there but when i spawned into game it wasnt. i triple checked and im doing everything right. any idea whats wrong?

    • @Minas_s
      @Minas_s 2 ปีที่แล้ว

      @@miniolas8293 yea same happening to me

    • @Minas_s
      @Minas_s 2 ปีที่แล้ว

      @@NiNER0NiN Check if you anchor it this also happend to me

    • @giad11
      @giad11 ปีที่แล้ว

      Is there a model for this?

  • @lyrax1702
    @lyrax1702 3 ปีที่แล้ว +2

    Keep doing a amazing job! In all honesty you inspired me to be a developer. You make amazing content roblox and TH-cam! Only a matter of time until you blow up ;)

    • @Pyxrien
      @Pyxrien  3 ปีที่แล้ว

      Thankyou Lyrax! only issue is I've ran out of video ideas😭

    • @nikkmelis7753
      @nikkmelis7753 3 ปีที่แล้ว

      @@Pyxrien py please forgive me and spidey we wont abuse from now on :( we r sorry

    • @nikkmelis7753
      @nikkmelis7753 3 ปีที่แล้ว

      @@Pyxrien forgive us :(

  • @egetaper
    @egetaper 2 ปีที่แล้ว +1

    THANK YOU SO MUCH ! I've been struggling for hours, finally one that works

  • @MakaTheGreat
    @MakaTheGreat 9 หลายเดือนก่อน

    i didnt think it was going to tell me if i could do the word safe zone when your in it but you did and your goated for that you didnt even need to

  • @usercodwarzonePS5
    @usercodwarzonePS5 2 ปีที่แล้ว +12

    Scripts: local event = game.ReplicatedStorage.Safezone

    script.Parent.Touched:Connect(function(hit)
    if(part.name ~= "HumanoidRootPart") then return end

    local character = part.Parent
    local forceField = Instance.new("ForceField")
    forceField.Name = "Safezone"
    ForceField.Visible = false
    forceField.Parent = character

    local player = game.Players:GetPlayerFromCharacter(character)

    if(player) then
    event:FireClient(player, "In")
    end
    end)

    script.Parent.TouchEnded:Connect(function(part)
    if(part.name ~= "HumanoidRootPart") then return end

    local character = part.Parent
    local forcefield = character:FindFirstChild("Safezone")

    if(forcefield) then
    forcefield:Destroy()
    end
    end)
    Local scripts:
    local event= game.ReplicatedStorage:WaitForChild("Safezone")
    local UI = game.Players.LocalPlayer.PlayerGui:WaitForChild("ScreenGui")
    local indicator = UI.TextLabel
    event.OnClientEvent:Connect(function(inOrOut)
    if(inOrOut == "In") then
    indicator.Visible = true

    else
    indicator.Visible = false
    end

    end)

    • @extrogity7249
      @extrogity7249 2 ปีที่แล้ว

      thank you

    • @Maukie
      @Maukie ปีที่แล้ว

      tysm man!

    • @Azroid-qv3wi
      @Azroid-qv3wi 6 หลายเดือนก่อน

      u made this script have errors on purpose not the same as video shame on you

    • @themanoftheland7286
      @themanoftheland7286 6 หลายเดือนก่อน

      @@Azroid-qv3wi yeah this guy is a bitch for putting errors

  • @Rand0mIdiot
    @Rand0mIdiot 2 ปีที่แล้ว +1

    Very easy to follow, definitely subscribing.

  • @kerry-annsmith7619
    @kerry-annsmith7619 11 หลายเดือนก่อน +1

    function onTouch(hit)
    if not hit.Parent:findFirstChild("Humanoid") then return end
    if hit.Parent:findFirstChild("ForceField") then return end
    local ff = Instance.new("ForceField", hit.Parent)
    script.Parent.Part.TouchEnded:connect(function()
    if hit.Parent:findFirstChild("ForceField") then
    ff:Destroy()
    end
    end)
    end
    script.Parent.Part.Touched:connect(onTouch)

  • @multistylegaming1347
    @multistylegaming1347 3 ปีที่แล้ว +1

    you make great content this helped me out a lot keep up the great work

    • @Pyxrien
      @Pyxrien  3 ปีที่แล้ว

      Really appreciate that, it means a lot!

  • @balamanik3724
    @balamanik3724 ปีที่แล้ว +1

    Thanks! Really helped a lot!

  • @John-zn5iy
    @John-zn5iy 3 ปีที่แล้ว +1

    Nice bro and i miss the admin adventure 2 i play that game all day but one day the game died no one playing admin adventure 2 now :c

    • @Pyxrien
      @Pyxrien  3 ปีที่แล้ว

      Constantly working on new projects!

    • @John-zn5iy
      @John-zn5iy 3 ปีที่แล้ว

      Ok

  • @Hakipaki-
    @Hakipaki- 2 ปีที่แล้ว +1

    Love ur channel

  • @reiko1945
    @reiko1945 3 ปีที่แล้ว +1

    tyy u helped me make my first safezone ;D

  • @dr.abucoon4814
    @dr.abucoon4814 ปีที่แล้ว +2

    This video amazing I hope you play my game in a month

  • @mattiaatv4481
    @mattiaatv4481 2 ปีที่แล้ว +1

    everything works fine but as soon as i die (no matter where) the text wont appear anymore as soon as i respawn

  • @spinnycrab10official
    @spinnycrab10official หลายเดือนก่อน

    everything else works except the text which won't appear when i go inside of the safe zone. help?

  • @KAMSON_pro
    @KAMSON_pro ปีที่แล้ว

    And how to rewrite this script so that the player does not receive damage, but the monsters do.

  • @gamingrdr
    @gamingrdr ปีที่แล้ว +1

    Thanks for making me type all that for nothing :(

  • @NotCarie
    @NotCarie 3 ปีที่แล้ว +1

    Pyxrien can you make a video where you make a overhead gui for a time counter please?

  • @2Soat
    @2Soat 9 หลายเดือนก่อน

    can u make it so that players inside the safezone cant hit player outside the zone

  • @Seth-26
    @Seth-26 3 ปีที่แล้ว +1

    Love it!!

  • @eekka117
    @eekka117 ปีที่แล้ว

    Is there a way to make it that the players inside the safe zone also can't damage people outside the safe zone?

  • @ball623
    @ball623 3 ปีที่แล้ว

    Doesn't work correctly when I'm in the UI disappears

  • @Blood_Muffinz
    @Blood_Muffinz 3 ปีที่แล้ว +2

    We are sorry py and seth -rocky and spidey

    • @Blood_Muffinz
      @Blood_Muffinz 3 ปีที่แล้ว

      Py………………seth…………………both of you sined talk to me on discord!!!!!

  • @lyrax1702
    @lyrax1702 3 ปีที่แล้ว

    Idea: How to make shift to sprint concept.

  • @Wolfydafloppa
    @Wolfydafloppa 2 ปีที่แล้ว +4

    doesnt work bruh

    • @KL4VR
      @KL4VR 3 หลายเดือนก่อน +1

      Bro exsactly

  • @mrgoofy6015
    @mrgoofy6015 2 ปีที่แล้ว +1

    Can you add the script somewhere in your description so we can copy and paste it?

  • @DrEggy2022
    @DrEggy2022 ปีที่แล้ว

    Did everything and still didn't work.

  • @FireFreddy-xf2wx
    @FireFreddy-xf2wx 3 ปีที่แล้ว +1

    I always remember what you did to me.............

    • @wurlps
      @wurlps 5 หลายเดือนก่อน +1

      what did bro do 💀

  • @777Nikolaus
    @777Nikolaus 2 ปีที่แล้ว

    didn't work and there is no errors or warnings

  • @FireFreddy-xf2wx
    @FireFreddy-xf2wx 3 ปีที่แล้ว +1

    Why do you keep forgeting about me...

  • @Sw1ffyEditz
    @Sw1ffyEditz ปีที่แล้ว

    WONT WORK BRO WHY

  • @getrektbyme_2826
    @getrektbyme_2826 2 ปีที่แล้ว

    you should make a tutorial on how to make other stuff

  • @soapy5343
    @soapy5343 3 ปีที่แล้ว +1

    Epic thx

  • @ellomatesitsme
    @ellomatesitsme 2 ปีที่แล้ว

    When ever I enter the safe zone it works but when I leave it stays on my screen please send me GUI script

    • @thegamingworld8871
      @thegamingworld8871 11 หลายเดือนก่อน

      coding is really careful work check his and work script again

  • @danahabdullah3525
    @danahabdullah3525 3 ปีที่แล้ว

    You said your account get hacked lets me know were i can talk to you

  • @ExiliaOwO
    @ExiliaOwO 3 ปีที่แล้ว

    well no safe zone really works for my game since i use serverside scripts (Star glitchers for example) and they just go through the safe zone so unless theres a way to disable the keybinds for the attacks i dont have a way to stop the glitchers from killing in it

    • @Pyxrien
      @Pyxrien  3 ปีที่แล้ว

      I'm confused, this safe zone is serverside meaning no damage can be taken to the player inside unless the weapons directly set the players health instead of using humanoid:TakeDamage()

    • @ExiliaOwO
      @ExiliaOwO 3 ปีที่แล้ว

      @@Pyxrien im not too familiar with scripts and all but star glitchers or other scripts i use in my game usually like erase the player and kill them that way. take for example a glitcher i often use its X move is an Aoe bubble that once the startup finishes it lifts any player near me up and basically erases them or with the Z move its kills them like a thanos snap so they dont respawn normally and i gotta use the refresh command from hd admin to fix that

    • @ExiliaOwO
      @ExiliaOwO 3 ปีที่แล้ว

      im looking for a kind of safe zone that disables specific key uses for example i press Z and nothing happens

  • @Cassui2
    @Cassui2 2 ปีที่แล้ว

    CAN YOU JUST COPY PASTE THE LINK HERE

  • @V2Shifts
    @V2Shifts 2 ปีที่แล้ว

    Thanks

  • @honosll8496
    @honosll8496 3 ปีที่แล้ว +1

    The force field destroy doesn’t work for me for some reason ….

    • @Pyxrien
      @Pyxrien  3 ปีที่แล้ว

      Go to the View tab on studio, open output then test it and tell me what it says, I will try help based off the error :)

  • @sigma2993
    @sigma2993 ปีที่แล้ว

    can u give me the script?

  • @RELTRARBLX
    @RELTRARBLX ปีที่แล้ว

    pls add a the safezone script in the description to copy and paste

    • @eekka117
      @eekka117 ปีที่แล้ว

      bro take the time and do it yourself how lazy are you?

  • @Plunk-i2x
    @Plunk-i2x 3 ปีที่แล้ว +1

    POG

  • @FireFreddy-xf2wx
    @FireFreddy-xf2wx 3 ปีที่แล้ว +1

    So I became a god abuser for revenge...

    • @boomiyt
      @boomiyt 2 ปีที่แล้ว

      shut yo goofy

    • @Stracyberry
      @Stracyberry ปีที่แล้ว +1

      what he do to you??

  • @kauliscool8709
    @kauliscool8709 3 ปีที่แล้ว

    it doesnt work for some reason!
    spent 20 minutes watching this :(

  • @puck9802
    @puck9802 2 ปีที่แล้ว

    How do i make that it only works in a specified team and if your not in that team it wont work

  • @n.supreme1
    @n.supreme1 2 ปีที่แล้ว

    I will hire u can i ? To help to script for a fps game ?

    • @boomiyt
      @boomiyt 2 ปีที่แล้ว

      yes you can its at his description

  • @rockorc6368
    @rockorc6368 2 ปีที่แล้ว +1

    spent 40 mins copying and it didnt work

    • @Pyxrien
      @Pyxrien  2 ปีที่แล้ว +1

      Check for errors in output :)

    • @rockorc6368
      @rockorc6368 2 ปีที่แล้ว

      @@Pyxrien ok thank you for helping

    • @rockorc6368
      @rockorc6368 2 ปีที่แล้ว

      @@Pyxrien i made a video for you check it out if you dont mind helping a little bit more, its been uploaded on my channel :)

    • @dailyquestions
      @dailyquestions 2 ปีที่แล้ว +1

      You dont learn by copying

    • @rockorc6368
      @rockorc6368 2 ปีที่แล้ว

      @@dailyquestions who?

  • @Hi_Xeran
    @Hi_Xeran 2 ปีที่แล้ว

    Script Pls

  • @Sntsax
    @Sntsax 3 ปีที่แล้ว

    really thanks!
    your admin adventures game player retry spamming
    and your discord not joining im give spamming with me player name: Noob_YT (this player display name)

  • @danahabdullah3525
    @danahabdullah3525 3 ปีที่แล้ว +1

    Hi I’m trying to reach you on discord put I couldn’t i need your help with my game and i will pay for it❤️

    • @Pyxrien
      @Pyxrien  3 ปีที่แล้ว

      whats the game about? do you have a discord tag i could contact you on? :)

    • @danahabdullah3525
      @danahabdullah3525 3 ปีที่แล้ว

      @@Pyxrien i texted you on discord

  • @ianisdambian2430
    @ianisdambian2430 2 ปีที่แล้ว

    pls script

  • @SoyPanCrudo
    @SoyPanCrudo 3 ปีที่แล้ว +1

    EPIC TY