- 19
- 6 088
BaconScripting
เข้าร่วมเมื่อ 12 มิ.ย. 2024
Hi. Bonjour.
God always bless you
God always bless you
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.
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...
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
Quem aqui e um português
Ayoo why this vid blow up than the other vids😭😭
No its real good
Is fake!!!
Tutorial for admin panel?
I alr have it on my yt
Pls make admin panel soon
I don got the id of model😢guys coment id models pls in my comment
Viruse now my game is destroyed
How to make free admin game
How to delete things on roblox lite on mobiles
How to create a pls donate game in studio lite
You can’t
Ty bro🎉🎉
8 Thanks it worked for my space game
No point of using it, except if you want player to no play game
yea
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😢😢
@@OfficialCorruptBun oki
Im so excited I will wait for it@@BaconBoyScripting
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?
I didn't understand
Is it work on r6?
Btw how did u got a w nametag?
What if. I choose korblox
@@Openlockk you can choose it just put the ID of Korblox leg
Script in description
Script in description
Syarter player . StarterChartarScript Local Script
Ty brother
Credit to @DonateKingP
Browheres admin pannel
Uhmm don't worries it will be there soon...
Naw, i already have it on my yt
I'm first
@@Pelow_XDGG
Add admin panel tmr my bday pls add for my bd
Can you make first to join get owner admin😅
Sorry i can't you need to make your own admin command if you want to do this
Script in description
Is there any other models i can use without HD admin?
@@123Countryballguy1 yeah you can choose any modle
Now i can finally add zombie spawners in my game
Wait how do i get an id model can someone please tell me if i found out i will edit
The website in the search
roblox studio lite exist???
Yes, it's for mobile
You can also do this in regular studio on pc btw
Does save players tool when die or join the game?
But I want all players to have admin
Not work
Cool
No voice or with voice?
with voice cuz why not :)
Ok@@trixi_0829
Yo do you changed your name and icon, cool
no can u pls make a kill brick like i wanna test this game
I didn't understand
@@BaconBoyScriptinglike a moving kill brick that trolls you
Ok@@Diegardox3000
@i did itDiegardox3000
Script in description
ok but why are you getservicing tween service every iteration when you can literally make it a variable
Someone has to give this kid grammar
@Moon_VR6 you have no idea what coding is
@@vifgaming says you
@@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?
@@Moon_VR6ok but can you actually make a game in roblox?
Ggs
Thanks for support ❤️
Yo wsp u finally upload
You again next time I see you I'm gonna go content you 😂😂
@ ?
@@RealBaconLite I saw you every studio lite video 🤣
I had school that's why I didn't upload
Pls tutorial
Script in description!
Can I invite you on discord? I'm gathering all mobile devs
Yes if you want@@TinySkullYT
What your discord ?@@TinySkullYT
How to move it