EXOxRobloxStudio
EXOxRobloxStudio
  • Видео 22
  • Просмотров 2 381
How to make a Reset Button in Roblox Studio | Tutorial
In today's video, I will be demonstrating how to make a Reset Button in Roblox Studio
hope yall liked it Subscribe for more and comment down what yall want next!
~Scripts~
script.Parent.MouseButton1Click:Connect(function()
game.Players.LocalPlayer.Character.Humanoid.Health = 0
end)
My Roblox user, 0winto100win
don't forget to check it out!
appreciate it
Просмотров: 2

Видео

How to make a "R" to Reset in Roblox Studio | Tutorial
Просмотров 202 часа назад
In today's video, I will be demonstrating how to make a "R" to Reset in Roblox Studio hope yall liked it Subscribe for more and comment down what yall want next! ~Scripts~ local player = game.Players.LocalPlayer local mouse = player:GetMouse() local char = player.Character local h = char:WaitForChild("Humanoid") mouse.KeyUp:connect(function(key) if key "r" then h.Health = 0 end end) My Roblox u...
How to make a Gui that shows your FPS in Roblox Studio | Tutorial
Просмотров 434 часа назад
In today's video, I will be demonstrating how to create a working conveyor belt in Roblox Studio hope yall liked it Subscribe for more and comment down what yall want next! ~Scripts~ local Delay = false local TL = script.Parent local RS = game:GetService("RunService") RS.RenderStepped:Connect(function() local FPS = workspace:GetRealPhysicsFPS() if Delay false then Delay = true TL.Text = "FPS: "...
How to make a Invite Friends Button in Roblox Studio | Tutorial
Просмотров 287 часов назад
In today's video, I will be demonstrating how to make a Invite Friends Button in Roblox Studio hope yall liked it Subscribe for more and comment down what yall want next! ~Scripts~ script.Parent.MouseButton1Click:Connect(function() game.SocialService:PromptGameInvite(game.Players.LocalPlayer) end) My Roblox user, 0winto100win don't forget to check it out! appreciate it Roblox Studio Roblox Stud...
How to make your game First Person Only in Roblox Studio | Tutorial
Просмотров 2667 часов назад
In todays Video, I will be showing How to make your game First Person Only in Roblox Studio hope yall liked it Subscribe for more and comment down what yall want next! Scripts~ ~No scripts~ My Roblox user, 0winto100win don't forget to check it out! Roblox Studio Roblox Studio Tutorial
How to make a Conveyor Belt in Roblox Studio | Tutorial
Просмотров 219 часов назад
In today's video, I will be demonstrating how to create a working conveyor belt in Roblox Studio hope yall liked it Subscribe for more and comment down what yall want next! ~No Scripts~ My Roblox user, 0winto100win don't forget to check it out! appreciate it Roblox Studio Roblox Studio Tutorial
How to Display a Player User in a Gui in Roblox Studio | Tutorial
Просмотров 10612 часов назад
In todays Video, I will be showing How to Display a Player User in a Gui in Roblox Studio hope yall liked it Subscribe for more and comment down what yall want next! ~Scripts~ local player = game.Players.LocalPlayer if player then script.Parent.Text = "Hello " ..player.Name.. "!" end My Roblox user, 0winto100win don't forget to check it out! Roblox Studio Roblox Studio Tutorial
How to make a Part fall when Touched in Roblox Studio | Tutorial
Просмотров 6914 часов назад
In todays Video, I will be showing How to make a Part fall when Touched in Roblox Studio! hope yall liked it Subscribe for more and comment down what yall want next! Scripts~ script.Parent.Touched:Connect(function(touched) local humanoid = touched.Parent:WaitForChild("Humanoid") if humanoid then wait(1) This adds a 1 second delay, script.Parent.Anchored = false end end) My Roblox user, 0winto10...
How to get Fall Damage in Roblox Studio | Tutorial
Просмотров 3216 часов назад
In todays Video, I will be showing How to get Fall Damage in Roblox Studio! hope yall liked it Subscribe for more and comment down what yall want next! Scripts~ In the comments, due to RUclips doesn't want it to be here My Roblox user, 0winto100win don't forget to check it out! Roblox Studio Roblox Studio Tutorial
How to Make a Part Change Your Walkspeed when you Touch it in Roblox Studio | Tutorial
Просмотров 5319 часов назад
In todays Video, I will be showing How to make a Part Change Your Walkspeed Touch it in Roblox Studio! hope y"all liked it Subscribe for more and comment down what y"all want next! Scripts~ script.Parent.Touched:Connect(function(touched) local humanoid = touched.Parent:WaitForChild("Humanoid") if humanoid then humanoid.WalkSpeed = 32 You can change here how fast you want the players walkspeed t...
How to make a Part Change Color Rainbow in Roblox Studio | Tutorial
Просмотров 6721 час назад
In todays Video, I will be showing How to make a Part Change Color Rainbow in Roblox Studio! hope y"all liked it Subscribe for more and comment down what y"all want next! Scripts~ while true do script.Parent.Color = Color3.new(255/255,0/255,0/255) for i = 0,255,10 do wait() script.Parent.Color = Color3.new(255/255,i/255,0/255) end for i = 255,0,-10 do wait() script.Parent.Color = Color3.new(i/2...
How to DISABLE the Reset Button In Roblox Studio!
Просмотров 49День назад
In todays Video, I will be showing How to DISABLE the Reset Button in Roblox Studio! hope y"all liked it Subscribe for more and comment down what y"all want next! Scripts~ local StarterGui = game:GetService('StarterGui') wait() StarterGui:SetCore("ResetButtonCallback",false) My Roblox user, 0winto100win don't forget to check it out! Roblox Studio Roblox Studio Tutorial
How to make a Part Spin in Roblox Studios!
Просмотров 145День назад
In todays Video, I will be showing to make a Part Spin in Roblox Studio! hope y"all liked it Subscribe for more and comment down what y"all want next! Scripts~ local TurningSpeed = 10 You can change how fast you want the part to spin here while true do script.Parent.CFrame = script.Parent.CFrame * CFrame.Angles(0, math.rad(TurningSpeed), 0) wait(0.01) This determines how often the part turns (U...
How to make a Trampoline in Roblox Studio!
Просмотров 194День назад
In todays Video, I will be showing to make a Trampoline in Roblox Studio! hope y"all liked it Subscribe for more and comment down what y"all want next! Scripts~ local Part = script.Parent Part.Velocity = Vector3.new(0, 1000, 0) Change 1000 to how ever high you want the player go when the player steps on the part My Roblox user, 0winto100win don't forget to check it out! Roblox Studio Roblox Stu...
How to make Button that Teleports you in Roblox Studio!
Просмотров 176Месяц назад
Follow me in Roblox for more! 0winto100win -scripts- player = game.Players.LocalPlayer button = script.Parent local debounce = false function teleport() if not debounce then debounce = true LowerTorso = player.Character.LowerTorso LowerTorso.CFrame = game.Workspace.TP1.CFrame end end button.MouseButton1Click:Connect(teleport) while true do wait() debounce = false wait(1) end
How to "Shift" to sprint in Roblox Studio!
Просмотров 47Месяц назад
How to "Shift" to sprint in Roblox Studio!
How to Jump Multiple times instead of Just 1 time in Roblox Studio!
Просмотров 43Месяц назад
How to Jump Multiple times instead of Just 1 time in Roblox Studio!
How to make a Part Neon in Roblox Studio!
Просмотров 96Месяц назад
How to make a Part Neon in Roblox Studio!
How to make a Animated PLAY Button in Roblox Studio!
Просмотров 3672 месяца назад
How to make a Animated PLAY Button in Roblox Studio!
How to make a Time Leaderboard in Roblox Studio!
Просмотров 812 месяца назад
How to make a Time Leaderboard in Roblox Studio!
How to make your Character Head follow your cursor in Roblox studio
Просмотров 2832 месяца назад
How to make your Character Head follow your cursor in Roblox studio
How to make a part that kills you when you touch it in Roblox Studio!
Просмотров 2232 месяца назад
How to make a part that kills you when you touch it in Roblox Studio!

Комментарии

  • @Ishimitso
    @Ishimitso 4 часа назад

    Hi exo31713 would you like to help me make my game? The game is an open world i need more developers that can help me finish the project faster^^, if you are interested or not just reply on this comment ty i wish you could help

  • @akeia93
    @akeia93 11 часов назад

    how do you make it get back up (To get it back in its original position after a few seconds)?

    • @exo31712
      @exo31712 2 часа назад

      like make it respawn?

  • @Ardentane
    @Ardentane 12 часов назад

    thank you bro, now i will continue doing my citadel, you are the best

    • @exo31712
      @exo31712 2 часа назад

      ofc your welcome and thank you alot! and good luck w it :)

  • @Finaled
    @Finaled 12 часов назад

    And btw can you make a starting screen? Cuz mine doesnt plook good..

    • @exo31712
      @exo31712 2 часа назад

      starting screen you mean the main menu? like "Play" "Credits and "Settings"?

  • @Finaled
    @Finaled 12 часов назад

    TYTYTY So MUCH i scripted a script but one thing was missing and your script Fixed ittt

    • @exo31712
      @exo31712 2 часа назад

      yay glad it helped you :D

  • @Finaled
    @Finaled 12 часов назад

    Tyy

    • @exo31712
      @exo31712 2 часа назад

      your welcome :D

  • @Finaled
    @Finaled 12 часов назад

    Tyy

    • @exo31712
      @exo31712 2 часа назад

      ofc anytime :)

  • @exo31712
    @exo31712 День назад

    ~Scripts~ local player = game.Players.LocalPlayer local mouse = player:GetMouse() local char = player.Character local h = char:WaitForChild("Humanoid") mouse.KeyUp:connect(function(key) if key == "r" then h.Health = 0 end end)

  • @FatBoy_Matt
    @FatBoy_Matt День назад

    TYSM! This really help me bro!

    • @exo31712
      @exo31712 День назад

      @@FatBoy_Matt ofc your welcome glad it helped you!

  • @michellearchibald-dj3st
    @michellearchibald-dj3st День назад

    SO GOOD

    • @exo31712
      @exo31712 День назад

      @@michellearchibald-dj3st I appreciate it, thank you so much!

  • @exo31712
    @exo31712 2 дня назад

    ~Scripts~ local Delay = false local TL = script.Parent local RS = game:GetService("RunService") RS.RenderStepped:Connect(function() local FPS = workspace:GetRealPhysicsFPS() if Delay == false then Delay = true TL.Text = "FPS: "..FPS wait(1) Delay = false end end)

  • @exo31712
    @exo31712 3 дня назад

    ~Scripts~ script.Parent.MouseButton1Click:Connect(function() game.SocialService:PromptGameInvite(game.Players.LocalPlayer) end)

  • @zoekix
    @zoekix 3 дня назад

    slay >:)

    • @exo31712
      @exo31712 3 дня назад

      @@zoekix you lost young lady?

  • @exo31712
    @exo31712 4 дня назад

    ~No scripts~ !

  • @exo31712
    @exo31712 5 дней назад

    ~Scripts~ local player = game.Players.LocalPlayer if player then script.Parent.Text = "Hello " ..player.Name.. "!" end

  • @RootiRBLX
    @RootiRBLX 6 дней назад

    Earned a sub! Every part move script was always so difficult and yours is so good and easy

    • @exo31712
      @exo31712 6 дней назад

      Thank you so much, made my day with those words and glad i could help thank you once again for the support really appreciate it❤️

  • @demowolf-o5b
    @demowolf-o5b 6 дней назад

    how did you learn to script

    • @exo31712
      @exo31712 6 дней назад

      @@demowolf-o5b good question, I’m a newbie to scripting and building I Js joined Roblox studio at 1st I was confused but building was easy for me but not scripting so i watched some vids bout scripting which gave me the idea to make this type of videos!

  • @exo31712
    @exo31712 6 дней назад

    ~Scripts~ script.Parent.Touched:Connect(function(touched) local humanoid = touched.Parent:WaitForChild("Humanoid") if humanoid then wait(1) -- This adds a 1 second delay, script.Parent.Anchored = false end end)

  • @exo31712
    @exo31712 7 дней назад

    -scripts- local minimum = 10 -- Minimum height a player can get damage from (If a player jumps off a part which is lower than your Minimum number no damage will be done.) local maximum = 25 -- Maximum height a player can get damage from (If a player jumps off a part which is higher than your Maximum number it will be a garenty death.) game.Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function(char) local humanoid = char:WaitForChild("Humanoid") local rootPart = char:WaitForChild("HumanoidRootPart") local height wait(1) humanoid.FreeFalling:Connect(function(Standing) if Standing then height = rootPart.Position.Y elseif not Standing then local fallHeight = height - rootPart.Position.Y if fallHeight >= maximum then char.Head:Destroy() elseif fallHeight >= minimum then humanoid.Health = humanoid.Health -20 -- This is the amount of health a player looses when get fall damage and they are inbetween your Minimum and Maximum numbers, For default it is set to 20, So when a player falls off a part they will loose 20 Health out of their 100 Health. end end end) end) end)

  • @Mysterious_TravelerMC
    @Mysterious_TravelerMC 8 дней назад

    how to make a some what breakable trampoline is you make the jump part transparent, and make the other part have a weld on them. the only thing is that you can still jump there.

  • @exo31712
    @exo31712 8 дней назад

    -scripts- script.Parent.Touched:Connect(function(touched) local humanoid = touched.Parent:WaitForChild("Humanoid") if humanoid then humanoid.WalkSpeed = 32 -- You can change here how fast you want the players walkspeed to be, The default normal walk speed is 16. end end)

  • @exo31712
    @exo31712 9 дней назад

    -scripts- while true do script.Parent.Color = Color3.new(255/255,0/255,0/255) for i = 0,255,10 do wait() script.Parent.Color = Color3.new(255/255,i/255,0/255) end for i = 255,0,-10 do wait() script.Parent.Color = Color3.new(i/255,255/255,0/255) end for i = 0,255,10 do wait() script.Parent.Color = Color3.new(0/255,255/255,i/255) end for i = 255,0,-10 do wait() script.Parent.Color = Color3.new(0/255,i/255,255/255) end for i = 0,255,10 do wait() script.Parent.Color = Color3.new(i/255,0/255,255/255) end for i = 255,0,-10 do wait() script.Parent.Color = Color3.new(255/255,0/255,i/255) end end

  • @KaxuYT
    @KaxuYT 9 дней назад

    nice bro

    • @exo31712
      @exo31712 9 дней назад

      @@KaxuYT thank you so much!❤️

  • @Sky-si1fq
    @Sky-si1fq 9 дней назад

    ngl underated but next time add tags and wouldb e better if it was like "How to make a Trampoline In roblox studio | Tutorial"

    • @exo31712
      @exo31712 9 дней назад

      @@Sky-si1fq really appreciate the tip and I’m bout to post another vid I will be making sure to add that and thank you once again!❤️

  • @exo31712
    @exo31712 11 дней назад

    Scripts~ local StarterGui = game:GetService('StarterGui') wait() StarterGui:SetCore("ResetButtonCallback",false)

  • @exo31712
    @exo31712 12 дней назад

    scripts~ local TurningSpeed = 10 -- You can change how fast you want the part to spin here while true do script.Parent.CFrame = script.Parent.CFrame * CFrame.Angles(0, math.rad(TurningSpeed), 0) wait(0.01) -- This determines how often the part turns (Updates the part to turn every 0.01 seconds, The lower the number the better transition) end

  • @exo31712
    @exo31712 13 дней назад

    -scripts- local Part = script.Parent Part.Velocity = Vector3.new(0, 1000, 0) -- Change 1000 to how ever high you want the player go when the player steps on the part

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

    -scripts- player = game.Players.LocalPlayer button = script.Parent local debounce = false function teleport() if not debounce then debounce = true LowerTorso = player.Character.LowerTorso LowerTorso.CFrame = game.Workspace.TP1.CFrame end end button.MouseButton1Click:Connect(teleport) while true do wait() debounce = false wait(1) end

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

      Heya did u give up on the mouse tracking full body script? Btw I was margoon I changed accs, but if u did give up it's alright

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

    -scripts- local Player = game.Players.LocalPlayer local Humanoid = Player.Character.Humanoid local ShiftToRun = false local OriginalWalkSpeed = 16 -- This is is what the players walkspeed will be on default local RunningWalkSpeed = 32 -- Change this to whatever you want the players walkspeed to be when they click shift. local function onKeyPress(input) if input.KeyCode == Enum.KeyCode.LeftShift then ShiftToRun = true Humanoid.WalkSpeed = RunningWalkSpeed end end local function onKeyRelease(input) if input.KeyCode == Enum.KeyCode.LeftShift then ShiftToRun = false Humanoid.WalkSpeed = OriginalWalkSpeed end end game:GetService("UserInputService").InputBegan:Connect(onKeyPress) game:GetService("UserInputService").InputEnded:Connect(onKeyRelease)

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

    YOO THX HELPED ME ALOT

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

    scripts ---------------------------- script.Parent.Touched:Connect(function(part) if part.Parent:FindFirstChild("Humanoid") then part.Parent.Humanoid.Health = 0 end end)

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

      HI bro i liked ur video.

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

      @@darmawandennis610 thanks g appreciate it

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

    -scripts- local MaxJumps = 2 local JumpCooldown = 0.2 ----------------------------------------- Settings local UIS = game:GetService("UserInputService") local Player = game.Players.LocalPlayer local Char = Player.Character or Player.CharacterAdded:Wait() local Humanoid = Char:WaitForChild("Humanoid") local NumJumps = 0 local canjump = false Humanoid.StateChanged:Connect(function(oldstate, newstate) if Enum.HumanoidStateType.Landed == newstate then NumJumps = 0 canjump = false elseif Enum.HumanoidStateType.Freefall == newstate then wait(JumpCooldown) canjump = true elseif Enum.HumanoidStateType.Jumping == newstate then canjump = false NumJumps += 1 end end) UIS.JumpRequest:Connect(function() if canjump and NumJumps < MaxJumps then Humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end)

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

    omg ty so much i was looking for this tyoe of video for like 20 mins helped me alot

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

    -no scripts- vid!

  • @lilwasooq
    @lilwasooq 2 месяца назад

    Dam helped me alot :)

    • @EXOxDEV
      @EXOxDEV 2 месяца назад

      I’m glad it did ❤️

  • @exo31712
    @exo31712 2 месяца назад

    -scripts- local ui = script.Parent.Parent script.Parent.MouseButton1Click:Connect(function(click) ui:TweenPosition(UDim2.new(0,0,1,0), "InOut", "Sine",0.5) for i = 1,25 do wait (0.01) game.Lighting.Blur.Size = game.Lighting.Blur.Size - 3 end end)

    • @laysukiamto9910
      @laysukiamto9910 6 дней назад

      Dosent work...

    • @exo31712
      @exo31712 6 дней назад

      @@laysukiamto9910 are you sure I didn’t cut in vids it’s all in one video and it worked maybe check out your script and make sure it’s in local script?

  • @exo31712
    @exo31712 2 месяца назад

    -scripts- game.Players.PlayerAdded:Connect(function(player) local leaderboard = Instance.new("IntValue", player) leaderboard.Name = "leaderstats" local time = Instance.new("IntValue", leaderboard) time.Name = "Minutes Played" time.Value = 0 while true do wait(60) -------- how long you have to wait time.Value = time.Value + 1 end end)

  • @exo31712
    @exo31712 2 месяца назад

    -Scripts- local Camera = game.Workspace.CurrentCamera local Player = game.Players.LocalPlayer local Mouse = Player:GetMouse() local Angles = CFrame.Angles local aSin = math.asin local aTan = math.atan local MseGuide = true local TurnCharacterToMouse = false local HeadHorFactor = 1 local HeadVertFactor = 0.6 local CharacterHorFactor = 0.5 local CharacterVertFactor = 0.4 local UpdateSpeed = 0.5 if TurnCharacterToMouse == true then MseGuide = true HeadHorFactor = 0 CharacterHorFactor = 0 end Player.CharacterAdded:Connect(function(char) local Character = char local Head = Character:WaitForChild("Head") local Humanoid = Character:WaitForChild("Humanoid") local HumanoidRootPart = Character:WaitForChild("HumanoidRootPart") local IsR6 = (Humanoid.RigType.Value==0) local Torso = (IsR6 and Character:WaitForChild("Torso")) or Character:WaitForChild("UpperTorso") local Neck = (IsR6 and Torso:WaitForChild("Neck")) or Head:WaitForChild("Neck") local Waist = (not IsR6 and Torso:WaitForChild("Waist")) local NeckOrgnC0 = Neck.C0 local WaistOrgnC0 = (not IsR6 and Waist.C0) Neck.MaxVelocity = 1/3 game:GetService("RunService").RenderStepped:Connect(function() local CameraCF = Camera.CoordinateFrame if ((IsR6 and Character["Torso"]) or Character["UpperTorso"])~=nil and Character["Head"]~=nil then local TorsoLV = Torso.CFrame.lookVector local HdPos = Head.CFrame.p if IsR6 and Neck or Neck and Waist then if Camera.CameraSubject:IsDescendantOf(Character) or Camera.CameraSubject:IsDescendantOf(Player) then local Dist = nil; local Diff = nil; if not MseGuide then Dist = (Head.CFrame.p-CameraCF.p).magnitude Diff = Head.CFrame.Y-CameraCF.Y if not IsR6 then Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Angles((aSin(Diff/Dist)*HeadVertFactor), -(((HdPos-CameraCF.p).Unit):Cross(TorsoLV)).Y*HeadHorFactor, 0), UpdateSpeed/2) Waist.C0 = Waist.C0:lerp(WaistOrgnC0*Angles((aSin(Diff/Dist)*CharacterVertFactor), -(((HdPos-CameraCF.p).Unit):Cross(TorsoLV)).Y*CharacterHorFactor, 0), UpdateSpeed/2) else Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Angles(-(aSin(Diff/Dist)*HeadVertFactor), 0, -(((HdPos-CameraCF.p).Unit):Cross(TorsoLV)).Y*HeadHorFactor),UpdateSpeed/2) end else local Point = Mouse.Hit.p Dist = (Head.CFrame.p-Point).magnitude Diff = Head.CFrame.Y-Point.Y if not IsR6 then Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Angles(-(aTan(Diff/Dist)*HeadVertFactor), (((HdPos-Point).Unit):Cross(TorsoLV)).Y*HeadHorFactor, 0), UpdateSpeed/2) Waist.C0 = Waist.C0:lerp(WaistOrgnC0*Angles(-(aTan(Diff/Dist)*CharacterVertFactor), (((HdPos-Point).Unit):Cross(TorsoLV)).Y*CharacterHorFactor, 0), UpdateSpeed/2) else Neck.C0 = Neck.C0:lerp(NeckOrgnC0*Angles((aTan(Diff/Dist)*HeadVertFactor), 0, (((HdPos-Point).Unit):Cross(TorsoLV)).Y*HeadHorFactor), UpdateSpeed/2) end end end end end if TurnCharacterToMouse == true then Humanoid.AutoRotate = false HumanoidRootPart.CFrame = HumanoidRootPart.CFrame:lerp(CFrame.new(HumanoidRootPart.Position, Vector3.new(Mouse.Hit.p.x, HumanoidRootPart.Position.Y, Mouse.Hit.p.z)), UpdateSpeed / 2) else Humanoid.AutoRotate = true end end) end)

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

      How do u make the full body to follow the cursor like combat iniation and some other games

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

      @@margooblutr5161 i didnt rlly got you mind showin a vid of it?

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

      @@exo31712 i dont know how to make videos but try looking at combat initiation videos and look how their character follows the cursor like the full body in r6

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

      @@margooblutr5161 alr imma try to make it asap!

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

      @@exo31712 its alr take ur time