BaconScripting
BaconScripting
  • 19
  • 6 088
How to make a dominus command in Studio Lite
-- Dominus Script
local accessory = 0 -- replace this to your Dominus ID
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(char)
local humanoid = char:WaitForChild("Humanoid")
player.Chatted:Connect(function(msg)
local loweredv = string.lower(msg)
if loweredv == "/yourcommand" then -- replace /yourcommand to your commmand you want
local descriptionClone = humanoid:GetAppliedDescription()
descriptionClone.HatAccessory = accessory -- replace HatAccessory to where you want your accessory will be
humanoid:ApplyDescription(descriptionClone)
end
end)
end)
end)
------------------------------------------- Made by BaconBoyScripting
-- Korblox Script
local accessory = 0 -- replace this to your Korblox ID
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Connect(function(char)
local humanoid = char:WaitForChild("Humanoid")
player.Chatted:Connect(function(msg)
local loweredv = string.lower(msg)
if loweredv == "/yourcommand" then -- replace /yourcommand to your commmand you want
local descriptionClone = humanoid:GetAppliedDescription()
descriptionClone.RightLeg = accessory -- replace HatAccessory to where you want your accessory will be
humanoid:ApplyDescription(descriptionClone)
end
end)
end)
end)
------------------------------------------- Made by BaconBoyScripting
-- Headless Script
local function onPlayerChatted(player, message)
if message == "/headless" and player.Character and player.Character:FindFirstChild("Head") then -- replace /headless to your message
player.Character.Head.Transparency = 1
player.Character.Head.face.Transparency = 1
end
end
local function onPlayerAdded(player)
player.Chatted:Connect(function (message) onPlayerChatted(player, message) end)
end
game.Players.PlayerAdded:Connect(onPlayerAdded)
------------------------------------------- Made by BaconBoyScripting
What is Roblox? ROBLOX is an online virtual playground and workshop, where kids of all ages can safely interact, create, have fun, and learn. It’s unique in that practically everything on ROBLOX is designed and constructed by members of the community. ROBLOX is designed for 13 to 18 year olds, but it is open to people of all ages. Each player starts by choosing an avatar and giving it an identity. They can then explore ROBLOX - interacting with others by chatting, playing games, or collaborating on creative projects. Each player is also given their own piece of undeveloped real estate along with a virtual toolbox with which to design and build anything - be it a navigable skyscraper, a working helicopter, a giant pinball machine, a multiplayer “Capture the Flag” game or some other, yet-to-be-dreamed-up creation. There is no cost for this first plot of virtual land. By participating and by building cool stuff, ROBLOX members can earn specialty badges as well as ROBLOX dollars (“Robux”). In turn, they can shop the online catalog to purchase avatar clothing and accessories as well as premium building materials, interactive components, and working mechanisms.
มุมมอง: 574

วีดีโอ

How to make trails in Studio Lite
มุมมอง 15321 วันที่ผ่านมา
local ServerStorage = game:GetService("ServerStorage") local Players = game:GetService("Players") local trail = ServerStorage:WaitForChild("Trail") local function createTrail(character) local newTrail = trail:Clone() newTrail.Parent = character local attachment0 = Instance.new("Attachment", character.Head) local attachment1 = Instance.new("Attachment", character.HumanoidRootPart) newTrail.Attac...
How to make chat tag in Studio Lite(Credit to @RealDonateKingP)
มุมมอง 26921 วันที่ผ่านมา
📕Script: pastebin.com/gwd2xBD0
How to make an anti-leave/reset in Studio Lite
มุมมอง 12721 วันที่ผ่านมา
local StarterGui = game:GetService("StarterGui") local GuiService = game:GetService("GuiService") local TeleportService = game:GetService("TeleportService") Disable the Reset Button StarterGui:SetCore("ResetButtonCallback", false) Handle Menu Opening to Teleport the Player GuiService.MenuOpened:Connect(function() TeleportService:Teleport(game.PlaceId) end)
How to make a char command in Studio Lite
มุมมอง 25821 วันที่ผ่านมา
local Admins = { "YourUsername", "OtherAdminUsername" } Add your Roblox usernames here local Players = game:GetService("Players") Function to check if a player is an admin local function IsAdmin(player) for _, adminName in ipairs(Admins) do if player.Name adminName then return true end end return false end Function to change character local function ChangeCharacter(player, username) local succe...
How to animate part/killbrick in Roblox Studio Lite
มุมมอง 837หลายเดือนก่อน
local TweenService = game:GetService("TweenService") local killBrick = script.Parent local speed = 8 Speed of the tween (adjust this to control how fast it moves) local moveDistance = 20 How far the brick will move (in studs) local startPosition = killBrick.Position local endPosition = startPosition Vector3.new(moveDistance, 0, 0) Change it if you want local tweenInfo = TweenInfo.new(moveDistan...
How to make a simple kill brick in Studio Lite (cuz I don't have vid ideas)
มุมมอง 77หลายเดือนก่อน
Get the part the script is attached to local killBrick = script.Parent Function to handle when a player touches the kill brick local function onTouch(hit) Check if the hit object is a player character (or part of it) local character = hit.Parent if character:IsA("Model") and character:FindFirstChild("Humanoid") then Get the humanoid of the character and kill it local humanoid = character:FindFi...
How to make a hover effect in Studio Lite
มุมมอง 182หลายเดือนก่อน
local Gui = script.Parent local OriginalSize = Gui.Size local ScaleFactor = 1.15 Change to what you want local TweenTime = 0.1 local function ScaleUp() local NewSize = UDim2.new(OriginalSize.X.Scale, OriginalSize.X.Offset * ScaleFactor, OriginalSize.Y.Scale, OriginalSize.Y.Offset * ScaleFactor) game:GetService("TweenService"):Create(Gui, TweenInfo.new(TweenTime), {Size = NewSize}):Play() end lo...
How to make a 2D Camera in Studio Lite
มุมมอง 176หลายเดือนก่อน
local Camera = game.Workspace.CurrentCamera local ContextActionService = game:GetService("ContextActionService") local RunService = game:GetService("RunService") local Character = script.Parent local RootPart = Character:WaitForChild("HumanoidRootPart") RunService.RenderStepped:Connect(function() ContextActionService:UnbindAction("moveForwardAction") ContextActionService:UnbindAction("moveBackw...
Done! Admin Panel Showcase 😁
มุมมอง 474หลายเดือนก่อน
Done! Admin Panel Showcase 😁
Sneak peek 👀
มุมมอง 114หลายเดือนก่อน
Sneak peek 👀
How to make a Freeze/UnFreeze Command in Studio Lite
มุมมอง 107หลายเดือนก่อน
Hi guys today we making a freeze/unfreeze command so pls consider to subscriber The Script Put This script in ServerscriptService pastebin.com/YFus71qK
How to make a Kill Command in Studio Lite
มุมมอง 81หลายเดือนก่อน
Hi guys today we making a kill command so pls sub and like The Script Put in ServerscriptService List of Admin Usernames (only these users can use the /kill command) local adminUsernames = { "Admin1", Replace with the username of an admin "Admin2" Add more usernames as needed } Function to check if a player is an admin local function isAdmin(player) return table.find(adminUsernames, player.Name...
How to make a Custom Kick command in Studio Lite
มุมมอง 259หลายเดือนก่อน
Hi guys today we making a custom kick command in Studio Lite so sub and like The Script Put this script in ServerscriptService M List of Admin Usernames (only these users can use the /kick command) local adminUsernames = { "Admin1", Replace with the username of an admin "Admin2" Add more usernames as needed } Function to check if a player is an admin local function isAdmin(player) return table....
How to make a Server Message in Studio Lite
มุมมอง 144หลายเดือนก่อน
How to make a Server Message in Studio Lite
How to make a DoubleJump Script in Studio Lite
มุมมอง 217หลายเดือนก่อน
How to make a DoubleJump Script in Studio Lite
How to make a leaderstats in Studio Lite
มุมมอง 155หลายเดือนก่อน
How to make a leaderstats in Studio Lite
How to add a model in studio lite(credit to @thelevel100gamer4)
มุมมอง 1.7Kหลายเดือนก่อน
How to add a model in studio lite(credit to @thelevel100gamer4)
How to save a player data in studio lite
มุมมอง 249หลายเดือนก่อน
How to save a player data in studio lite

ความคิดเห็น

  • @KAIKE7K
    @KAIKE7K 3 วันที่ผ่านมา

    Quem aqui e um português

  • @BaconBoyScripting
    @BaconBoyScripting 4 วันที่ผ่านมา

    Ayoo why this vid blow up than the other vids😭😭

    • @Itznata4t7
      @Itznata4t7 3 วันที่ผ่านมา

      No its real good

  • @Robloxstudio-s2b
    @Robloxstudio-s2b 7 วันที่ผ่านมา

    Is fake!!!

  • @Ishai125
    @Ishai125 8 วันที่ผ่านมา

    Tutorial for admin panel?

    • @Notbloxxy69
      @Notbloxxy69 วันที่ผ่านมา

      I alr have it on my yt

  • @0_0-HIO
    @0_0-HIO 9 วันที่ผ่านมา

    Pls make admin panel soon

  • @FranciscoJanuário-l8q
    @FranciscoJanuário-l8q 11 วันที่ผ่านมา

    I don got the id of model😢guys coment id models pls in my comment

  • @Bunny-q7r
    @Bunny-q7r 17 วันที่ผ่านมา

    Viruse now my game is destroyed

  • @Editorla
    @Editorla 18 วันที่ผ่านมา

    How to make free admin game

  • @lina-k1i
    @lina-k1i 20 วันที่ผ่านมา

    How to delete things on roblox lite on mobiles

  • @the7gamer708
    @the7gamer708 20 วันที่ผ่านมา

    How to create a pls donate game in studio lite

  • @JEİREİ
    @JEİREİ 21 วันที่ผ่านมา

    Ty bro🎉🎉

  • @iampiku565
    @iampiku565 21 วันที่ผ่านมา

    8 Thanks it worked for my space game

  • @allvideo7315
    @allvideo7315 21 วันที่ผ่านมา

    No point of using it, except if you want player to no play game

  • @OfficialCorruptBun
    @OfficialCorruptBun 21 วันที่ผ่านมา

    PLEASE TELL ME HOW TO MAKE A PART THAT GIVES U ACCESSORIES OR CLOTHES WHEN U TOUCH IT OR PRESS plsss help me I'm begging😢😢

    • @BaconBoyScripting
      @BaconBoyScripting 21 วันที่ผ่านมา

      @@OfficialCorruptBun oki

    • @OfficialCorruptBun
      @OfficialCorruptBun 20 วันที่ผ่านมา

      Im so excited I will wait for it​@@BaconBoyScripting

  • @MichaelWright-k1b
    @MichaelWright-k1b 22 วันที่ผ่านมา

    I really appreciate your efforts! Could you help me with something unrelated: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). Could you explain how to move them to Binance?

  • @Gavin_animation
    @Gavin_animation 22 วันที่ผ่านมา

    Is it work on r6?

  • @Pooptan11
    @Pooptan11 22 วันที่ผ่านมา

    Btw how did u got a w nametag?

  • @Openlockk
    @Openlockk 23 วันที่ผ่านมา

    What if. I choose korblox

    • @BaconBoyScripting
      @BaconBoyScripting 22 วันที่ผ่านมา

      @@Openlockk you can choose it just put the ID of Korblox leg

  • @BaconBoyScripting
    @BaconBoyScripting 23 วันที่ผ่านมา

    Script in description

  • @BaconBoyScripting
    @BaconBoyScripting 25 วันที่ผ่านมา

    Script in description

  • @BraydenTheDev
    @BraydenTheDev 26 วันที่ผ่านมา

    Syarter player . StarterChartarScript Local Script

  • @BraydenTheDev
    @BraydenTheDev 26 วันที่ผ่านมา

    Ty brother

  • @BaconBoyScripting
    @BaconBoyScripting 26 วันที่ผ่านมา

    Credit to @DonateKingP

  • @RealBaconLite
    @RealBaconLite 26 วันที่ผ่านมา

    Browheres admin pannel

    • @BaconBoyScripting
      @BaconBoyScripting 26 วันที่ผ่านมา

      Uhmm don't worries it will be there soon...

    • @Notbloxxy69
      @Notbloxxy69 วันที่ผ่านมา

      Naw, i already have it on my yt

  • @Pelow_XD
    @Pelow_XD 26 วันที่ผ่านมา

    I'm first

  • @KyleCummings-qd5hi
    @KyleCummings-qd5hi 27 วันที่ผ่านมา

    Add admin panel tmr my bday pls add for my bd

  • @Openlockk
    @Openlockk 27 วันที่ผ่านมา

    Can you make first to join get owner admin😅

    • @BaconBoyScripting
      @BaconBoyScripting 27 วันที่ผ่านมา

      Sorry i can't you need to make your own admin command if you want to do this

  • @BaconBoyScripting
    @BaconBoyScripting 27 วันที่ผ่านมา

    Script in description

  • @123Countryballguy1
    @123Countryballguy1 28 วันที่ผ่านมา

    Is there any other models i can use without HD admin?

    • @BaconBoyScripting
      @BaconBoyScripting 28 วันที่ผ่านมา

      @@123Countryballguy1 yeah you can choose any modle

    • @123Countryballguy1
      @123Countryballguy1 22 วันที่ผ่านมา

      Now i can finally add zombie spawners in my game

  • @luke-lm4ti
    @luke-lm4ti 29 วันที่ผ่านมา

    Wait how do i get an id model can someone please tell me if i found out i will edit

    • @Project_Reus
      @Project_Reus 29 วันที่ผ่านมา

      The website in the search

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

    roblox studio lite exist???

    • @purpbatkk
      @purpbatkk 11 วันที่ผ่านมา

      Yes, it's for mobile

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

    You can also do this in regular studio on pc btw

  • @Theexploiterguy-r1x
    @Theexploiterguy-r1x หลายเดือนก่อน

    Does save players tool when die or join the game?

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

    But I want all players to have admin

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

    Not work

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

    Cool

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

    No voice or with voice?

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

      with voice cuz why not :)

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

      Ok​@@trixi_0829

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

    Yo do you changed your name and icon, cool

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

    no can u pls make a kill brick like i wanna test this game

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

      I didn't understand

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

      @@BaconBoyScriptinglike a moving kill brick that trolls you

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

      Ok​@@Diegardox3000

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

      ​@i did itDiegardox3000

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

    Script in description

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

    ok but why are you getservicing tween service every iteration when you can literally make it a variable

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

      Someone has to give this kid grammar

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

      @Moon_VR6 you have no idea what coding is

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

      @@vifgaming says you

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

      ​@@Moon_VR6do you have any idea what the word "luau" means you could just do local ts = game:GetService("TweenService") and declare goals, tweens and in the end you can just do this assuming all the tweens have been created and declared as a variable thing.MouseEnter:Connect(function() tween1:Play() --Assuming tween1 is a tween end) thing.MouseLeave:Connect(function() tween2:Play() --Same here end) Change thing to the thing to tween Now who's the dumb one huh?

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

      ​@@Moon_VR6ok but can you actually make a game in roblox?

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

    Ggs

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

    Yo wsp u finally upload

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

      You again next time I see you I'm gonna go content you 😂😂

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

      @ ?

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

      @@RealBaconLite I saw you every studio lite video 🤣

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

      I had school that's why I didn't upload

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

    Pls tutorial

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

    Script in description!

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

      Can I invite you on discord? I'm gathering all mobile devs

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

      ​Yes if you want​@@TinySkullYT

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

      ​What your discord ?@@TinySkullYT

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

    How to move it