CallMeNoob
CallMeNoob
  • 7
  • 1 532
How to make slap battles on studio lite / Part 3
Click script
script.Parent.MouseClick:Connect(function(player)
local slaps = player.leaderstats.Slaps
local equipped = player.Equipped
local Glove = player.leaderstats.Glove
local GloveValue = "Soul"
local BS = game:GetService("BadgeService")
local id = 2672379658118248 -- your badge id here and this is badge i Alr got it and i create the badge pls create new badge on your game and put here
if BS:UserHasBadge(player.UserId,id) then
equipped.Value = 3
Glove.Value = GloveValue
wait(1.5)
else
wait(1.5)
end
end)
New Ragdoll
local tool = script.Parent
local hitbox = tool:WaitForChild("Hitbox")
local slapSound = tool:WaitForChild("SlapSound")
local damageAmount = 10 -- Damage
local flingForce = 100 -- Fling
local jumpForce = 50 -- Slap The make Jump
local cooldownTime = 2 -- Cooldown time in seconds
local ragdollDuration = 2 -- Ragdoll Time in seconds
local isOnCooldown = false
local slapActivated = false
local hitTargets = {}
tool.Activated:Connect(function()
if not isOnCooldown then
slapActivated = true
isOnCooldown = true
task.delay(cooldownTime, function()
isOnCooldown = false
slapActivated = false
hitTargets = {}
end)
end
end)
local function enableRagdoll(character)
for _, joint in ipairs(character:GetDescendants()) do
if joint:IsA("Motor6D") then
local attachment0 = Instance.new("Attachment")
local attachment1 = Instance.new("Attachment")
attachment0.CFrame = joint.C0
attachment1.CFrame = joint.C1
attachment0.Parent = joint.Part0
attachment1.Parent = joint.Part1
local constraint = Instance.new("BallSocketConstraint")
constraint.Attachment0 = attachment0
constraint.Attachment1 = attachment1
constraint.Parent = joint.Part0
joint.Enabled = false
end
end
local humanoid = character:FindFirstChild("Humanoid")
if humanoid then
humanoid.PlatformStand = true
end
end
local function disableRagdoll(character)
for _, joint in ipairs(character:GetDescendants()) do
if joint:IsA("Motor6D") then
joint.Enabled = true
elseif joint:IsA("Attachment") or joint:IsA("BallSocketConstraint") then
joint:Destroy()
end
end
local humanoid = character:FindFirstChild("Humanoid")
if humanoid then
humanoid.PlatformStand = false
end
end
local function onTouched(hit)
if not slapActivated then return end
local targetCharacter = hit.Parent
local targetHumanoid = targetCharacter:FindFirstChild("Humanoid")
local toolOwner = game.Players:GetPlayerFromCharacter(tool.Parent)
if targetHumanoid and toolOwner then
if hitTargets[targetCharacter] then
return
end
hitTargets[targetCharacter] = true
local leaderstats = toolOwner:FindFirstChild("leaderstats")
if leaderstats then
local slapsStat = leaderstats:FindFirstChild("Slaps")
if slapsStat then
slapsStat.Value = slapsStat.Value + 1
end
end
if slapSound then
slapSound:Play()
end
targetHumanoid:TakeDamage(damageAmount)
local rootPart = targetCharacter:FindFirstChild("HumanoidRootPart")
local ownerCharacter = tool.Parent
local ownerRootPart = ownerCharacter:FindFirstChild("HumanoidRootPart")
if rootPart and ownerRootPart then
local flingDirection = (ownerRootPart.CFrame.LookVector).Unit * flingForce
rootPart.Velocity = Vector3.new(flingDirection.X, jumpForce, flingDirection.Z)
task.delay(0.5, function()
enableRagdoll(targetCharacter)
task.delay(ragdollDuration, function()
disableRagdoll(targetCharacter)
end)
end)
end
slapActivated = false
end
end
hitbox.Touched:Connect(onTouched)
tool.Unequipped:Connect(function()
slapActivated = false
end)
Slap gui
local player = game.Players.LocalPlayer
local slaps = player.leaderstats:WaitForChild("Slaps")
local label = script.Parent
label.Text = "Slaps:" ..slaps.Value
slaps.Changed:Connect(function()
label.Text = "Slaps:" ..slaps.Value
end)
I can’t put anymore because description too long go to comment
มุมมอง: 224

วีดีโอ

Leak.1: New ragdoll? Will have tutorial?Leak.1: New ragdoll? Will have tutorial?
Leak.1: New ragdoll? Will have tutorial?
มุมมอง 1544 วันที่ผ่านมา
Choose old ragdoll or new ragdoll
How to make slap battles on studio lite / Part 2How to make slap battles on studio lite / Part 2
How to make slap battles on studio lite / Part 2
มุมมอง 3765 วันที่ผ่านมา
- Portal script- script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then script.Disabled = true local player = game.Players:GetPlayerFromCharacter(hit.Parent) local equipped = player.Equipped local spawns = game.Workspace.Spawns local randSpawn = math.random(1, #spawns:GetChildren()) local TeleSpawn = spawns:FindFirstChild(randSpawn) if TeleSpawn then local Tel...
How to make slap battles on studio lite / Part 1.5How to make slap battles on studio lite / Part 1.5
How to make slap battles on studio lite / Part 1.5
มุมมอง 2405 วันที่ผ่านมา
Dash Ability I can’t put this go find on comment until see my chat with Pastebin link ShowDashGui script Server script ServerScriptService local replicatedStorage = game:GetService("ReplicatedStorage") local showDashButtonEvent = replicatedStorage:WaitForChild("ShowDashButton") game.Players.PlayerAdded:Connect(function(player) player.CharacterAdded:Connect(function(character) character.ChildAdd...
How to make slap battles on Studio Lite / Part 1How to make slap battles on Studio Lite / Part 1
How to make slap battles on Studio Lite / Part 1
มุมมอง 4926 วันที่ผ่านมา
- script leaderboard - game.Players.PlayerAdded:Connect(function(player) local leaderstats = Instance.new("Folder", player) leaderstats.Name = "leaderstats" local Slaps = Instance.new("IntValue", leaderstats) Slaps.Name = "Slaps" Slaps.Value = 0 local Equipped = Instance.new("IntValue",player) Equipped.Value = 1 Equipped.Name = "Equipped" local Glove = Instance.new("StringValue", leaderstats) G...
My sword battles / obby creatorMy sword battles / obby creator
My sword battles / obby creator
มุมมอง 405 หลายเดือนก่อน
Chill sword no bug
Showcase some sans multiverse obby / obby creatorShowcase some sans multiverse obby / obby creator
Showcase some sans multiverse obby / obby creator
มุมมอง 567 หลายเดือนก่อน

ความคิดเห็น

  • @MEGAANJARSARI-c1p
    @MEGAANJARSARI-c1p 3 ชั่วโมงที่ผ่านมา

    local targetCharacter = hit.Parent local targetHumanoid = targetCharacter:FindFirstChild("Humanoid") local toolOwner = game.Players:GetPlayerFromCharacter(tool.Parent) -- Get the player who owns the tool if toolOwner and toolOwner:FindFirstChild("leaderstats") then local slapsStat = toolOwner.leaderstats:FindFirstChild("Slaps") if slapsStat then slapsStat.Value = slapsStat.Value + 1 -- Increment the Slaps stat for the tool owner Slap give end end

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

    W, waiting for part 4

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

    Hey so does everyone can see the dash ability ? Like cuz it's local script... I don't really want dash ability I'm thinking to change it so i just wanna make sure does does everyone can see it ?

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

    Bro make a bangers 🔥🔥 you deserve 100 subs man

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

    Finally

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

    Yo is the slap gui is made by netherite studios

  • @noob4865mReal
    @noob4865mReal 2 วันที่ผ่านมา

    Soul glove script local tool = script.Parent local hitbox = tool:WaitForChild("Hitbox") -- Hitbox part local slapSound = tool:WaitForChild("SlapSound") -- Sound instance local baseDamage = 10 -- damage local baseJumpForce = 100 -- jump force local baseFlingForce = 100 -- fling local cooldownTime = 2 -- Cooldown time in seconds local ragdollDuration = 5 -- Ragdoll time in seconds local maxSpeed = 100 -- speed limit local speedPerKill = 3 -- Speed increase per kill local normalSpeed = 16 local isOnCooldown = false local slapActivated = false local hitTargets = {} local trackedHumanoids = {} local function createKillGui(player) local playerGui = player:WaitForChild("PlayerGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "KillGui" screenGui.Parent = playerGui local killLabel = Instance.new("TextLabel") killLabel.Name = "KillLabel" killLabel.Size = UDim2.new(0.2, 0, 0.1, 0) killLabel.Position = UDim2.new(0.4, 0, 0.1, 0) killLabel.BackgroundColor3 = Color3.new(0, 0, 0) killLabel.TextColor3 = Color3.new(1, 1, 1) killLabel.Font = Enum.Font.SourceSansBold killLabel.TextScaled = true killLabel.Text = "Kills: 0" killLabel.Parent = screenGui return killLabel end local function updateKillGui(player, kills) local playerGui = player:FindFirstChild("PlayerGui") local screenGui = playerGui and playerGui:FindFirstChild("KillGui") if screenGui then local killLabel = screenGui:FindFirstChild("KillLabel") if killLabel then killLabel.Text = "Kills: " .. tostring(kills) end end end local function enableRagdoll(character) for _, joint in ipairs(character:GetDescendants()) do if joint:IsA("Motor6D") then local attachment0 = Instance.new("Attachment") local attachment1 = Instance.new("Attachment") attachment0.CFrame = joint.C0 attachment1.CFrame = joint.C1 attachment0.Parent = joint.Part0 attachment1.Parent = joint.Part1 local constraint = Instance.new("BallSocketConstraint") constraint.Attachment0 = attachment0 constraint.Attachment1 = attachment1 constraint.Parent = joint.Part0 joint.Enabled = false end end local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.PlatformStand = true end end local function disableRagdoll(character) for _, joint in ipairs(character:GetDescendants()) do if joint:IsA("Motor6D") then joint.Enabled = true elseif joint:IsA("Attachment") or joint:IsA("BallSocketConstraint") then joint:Destroy() end end local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.PlatformStand = false end end local function trackHumanoidDeath(humanoid, toolOwner) if trackedHumanoids[humanoid] then return end trackedHumanoids[humanoid] = true humanoid.Died:Connect(function() local playerGui = toolOwner:FindFirstChild("PlayerGui") if playerGui then local screenGui = playerGui:FindFirstChild("KillGui") if screenGui then local killLabel = screenGui:FindFirstChild("KillLabel") if killLabel then local currentKills = tonumber(killLabel.Text:match("%d+")) or 0 local newKills = currentKills + 1 killLabel.Text = "Kills: " .. newKills baseDamage = baseDamage + 5 baseJumpForce = baseJumpForce + 20 baseFlingForce = baseFlingForce + 15 local currentSpeed = toolOwner.Character and toolOwner.Character:FindFirstChild("Humanoid") if currentSpeed then local newSpeed = math.min(normalSpeed + (newKills * speedPerKill), maxSpeed) currentSpeed.WalkSpeed = newSpeed end end end end end) end tool.Activated:Connect(function() if not isOnCooldown then slapActivated = true isOnCooldown = true task.delay(cooldownTime, function() isOnCooldown = false slapActivated = false hitTargets = {} end) end end) local function onTouched(hit) if not slapActivated then return end local targetCharacter = hit.Parent local targetHumanoid = targetCharacter:FindFirstChild("Humanoid") local toolOwner = game.Players:GetPlayerFromCharacter(tool.Parent) if targetHumanoid and toolOwner then if hitTargets[targetCharacter] then return end hitTargets[targetCharacter] = true if slapSound then slapSound:Play() end targetHumanoid:TakeDamage(baseDamage) trackHumanoidDeath(targetHumanoid, toolOwner) local leaderstats = toolOwner:FindFirstChild("leaderstats") if leaderstats then local slapsStat = leaderstats:FindFirstChild("Slaps") if slapsStat then slapsStat.Value = slapsStat.Value + 1 end end local rootPart = targetCharacter:FindFirstChild("HumanoidRootPart") local ownerCharacter = tool.Parent local ownerRootPart = ownerCharacter:FindFirstChild("HumanoidRootPart") if rootPart and ownerRootPart then local flingDirection = ownerRootPart.CFrame.LookVector.Unit * baseFlingForce rootPart.Velocity = Vector3.new(flingDirection.X, baseJumpForce, flingDirection.Z) task.delay(0.5, function() enableRagdoll(targetCharacter) task.delay(ragdollDuration, function() disableRagdoll(targetCharacter) end) end) end slapActivated = false end end game.Players.PlayerAdded:Connect(function(player) createKillGui(player) end) hitbox.Touched:Connect(onTouched) tool.Unequipped:Connect(function() slapActivated = false end)

  • @noob4865mReal
    @noob4865mReal 2 วันที่ผ่านมา

    DataStore/ you need TURN ON API SERVICE on Roblox studio to work local DS = game:GetService("DataStoreService"):GetDataStore("SaveSlaps") game.Players.PlayerAdded:Connect(function(plr) wait(0.5) local plrkey = ("id_")..plr.UserId local s1 = plr.leaderstats.Slaps local getsaved = DS:GetAsync(plrkey) if getsaved then s1.Value = getsaved[1] else local numforsaveing = { s1.Value } DS:GetAsync(plrkey, numforsaveing) end end) game.Players.PlayerRemoving:Connect(function(plr) DS:SetAsync("id_"..plr.UserId,{ plr.leaderstats.Slaps.Value }) end)

  • @MiguelCGGames1
    @MiguelCGGames1 2 วันที่ผ่านมา

    Thankssss brooo

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

    Um you make this script by chatgpt right? The ragdoll is same I made my script with chatgpt

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

    💀

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

    Hey bro y need to fix the slap it dont works on players also y need to add a slap swing animation

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

    Alr do it also a data save

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

    Are you literally gonna leak all of the scripts and make everyone else have the same game

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

    Cool

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

    Yes Plz Also add slap save and gamepass glove and badge

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

      But the datastore only works on your published game

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

      @@TiahhTheRightBoom sure

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

      XclassicgRLBX already made the datasave slaps and he posted it on yt

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

      Awesome I need gamepass glove cuz I already have the datasave slaps script

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

      @noob4865mreal u have discord server?

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

    video suggestion: make a data save in slap or gamepass glove please

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

    Here fixed glove if you got ( expected near with ? script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("Humanoid") then script.Disabled = true local player = game.Players:GetPlayerFromCharacter(hit.Parent) local equipped = player.Equipped local spawns = game.Workspace.Spawns local randSpawn = math.random(1, #spawns:GetChildren()) local TeleSpawn = spawns:FindFirstChild(randSpawn) if TeleSpawn then local TelePos = TeleSpawn.Position hit.Parent:moveTo(TelePos) local HandsFold = game:GetService("ServerStorage").Hands for i,v in pairs(HandsFold:GetChildren()) do local Hand = v:FindFirstChild(equipped.Value) if Hand then Hand = Hand.Parent local ClonedHand = Hand:Clone() ClonedHand.Parent = player.Backpack end end wait(0.25) script.Disabled = false else wait(0.25) script.Disabled = false return end end end)

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

      I didn't got an error

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

      People did so if you got bug so use it

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

    Longest tutorial

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

    Bro the portal script has a error can y check and fix it plssss ❤

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

    How to make solo chair?

  • @حسامالمياحي-ح9ل
    @حسامالمياحي-ح9ل 4 วันที่ผ่านมา

    Now add a admin Ui and a ban ui tutorial pleasee

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

    In portal scipt it says Workspace.YourSelf.Script 7:')'expected near ?

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

    The portal script is giving an error, help me, I did everything directly on the portal but it is giving an error

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

    Next tutorial make equip system

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

    Why didn’t you just use the podium mesh

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

    Tysm

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

    Great! Thanks For helping me making slap battle fan game

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

    - click script - script.Parent.MouseClick:Connect(function(player) local slaps = player.leaderstats.Slaps local equipped = player.Equipped local Glove = player.leaderstats.Glove local GloveValue = "YourGloveName" if slaps.Value >= 0 then equipped.Value = 1 Glove.Value = GloveValue wait(1.5) else wait(1.5) end end)

  • @LB_Tutorials
    @LB_Tutorials 5 วันที่ผ่านมา

    :D

  • @noob4865mReal
    @noob4865mReal 5 วันที่ผ่านมา

    Part 2 soon 1-2 hour will be upload

  • @TherealReldi
    @TherealReldi 5 วันที่ผ่านมา

    Where y gonna make tutorial for selecting glove

    • @noob4865mReal
      @noob4865mReal 5 วันที่ผ่านมา

      @@TherealReldi in part 2

    • @TherealReldi
      @TherealReldi 5 วันที่ผ่านมา

      @noob4865mReal alr waiting for it

  • @noob4865mReal
    @noob4865mReal 5 วันที่ผ่านมา

    Dash Ability/ Local script / inside screen gui pastebin.com/vKz5UL5Q

  • @LB_Tutorials
    @LB_Tutorials 5 วันที่ผ่านมา

    My Slap Script is Better it Doesnt push the player

    • @noob4865mReal
      @noob4865mReal 5 วันที่ผ่านมา

      Nice my script just ragdoll you can check my game, I made this for revenge Floppa sike and make his ragdoll easy

    • @andreimadalin0855
      @andreimadalin0855 5 วันที่ผ่านมา

      ​@@noob4865mRealim floppa sike reading this btw

    • @Slap_battles-u6u
      @Slap_battles-u6u 9 ชั่วโมงที่ผ่านมา

      Lb tutorial how day u make the stand i wait for you 1 years😂

  • @حسامالمياحي-ح9ل
    @حسامالمياحي-ح9ل 5 วันที่ผ่านมา

    Please do part 2

  • @SamStudioLite
    @SamStudioLite 5 วันที่ผ่านมา

    How do I do a slap animation

  • @TiahhTheRightBoom
    @TiahhTheRightBoom 5 วันที่ผ่านมา

    Hi dude, i met you before my name is deminated did you remember? That i got owner badge and you give me 500 points

  • @TherealReldi
    @TherealReldi 5 วันที่ผ่านมา

    Next make a slap selection when y touch a slap in lobby you get it in game

    • @noob4865mReal
      @noob4865mReal 5 วันที่ผ่านมา

      Sure

    • @TherealReldi
      @TherealReldi 5 วันที่ผ่านมา

      Alr waiting for it ❤​@@noob4865mReal

  • @NotV45U
    @NotV45U 6 วันที่ผ่านมา

    I also made a vid like this but didnt use ur script lol!

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

    is cool how did you get a music tho