ADVERTISEMENTREMOVE ADS
distintivo/gamepass morphs
41,550 views

Script Preview
Description
ADVERTISEMENTREMOVE ADS
81 Lines • 2.77 KiB
--[[
Cyclically's Custom BTools
BTools will only replicate on unanchored parts
https://v3rmillion.net/member.php?action=profile&uid=785986
]]
local LocalPlayer = game:GetService("Players").LocalPlayer
local mouse = LocalPlayer:GetMouse()
local movetool = Instance.new("Tool", LocalPlayer.Backpack)
local deletetool = Instance.new("Tool", LocalPlayer.Backpack)
local undotool = Instance.new("Tool", LocalPlayer.Backpack)
local identifytool = Instance.new("Tool", LocalPlayer.Backpack)
local movedetect = false
local movingpart = nil
local movetransparency = 0
if editedparts == nil then
editedparts = {}
parentfix = {}
positionfix = {}
end
deletetool.Name = "Delete"
undotool.Name = "Undo"
identifytool.Name = "Identify"
movetool.Name = "Move"
undotool.CanBeDropped = false
deletetool.CanBeDropped = false
identifytool.CanBeDropped = false
movetool.CanBeDropped = false
undotool.RequiresHandle = false
deletetool.RequiresHandle = false
identifytool.RequiresHandle = false
movetool.RequiresHandle = false
local function createnotification(title, text)
game:GetService("StarterGui"):SetCore("SendNotification", {
Title = title;
Text = text;
Duration = 1;
})
end
deletetool.Activated:Connect(function()
createnotification("Delete Tool", "You have deleted "..mouse.Target.Name)
table.insert(editedparts, mouse.Target)
table.insert(parentfix, mouse.Target.Parent)
table.insert(positionfix, mouse.Target.CFrame)
mouse.Target.Parent = nil
end)
undotool.Activated:Connect(function()
createnotification("Undo Tool", "You have undone "..editedparts[#editedparts].Name)
editedparts[#editedparts].Parent = parentfix[#parentfix]
editedparts[#editedparts].CFrame = positionfix[#positionfix]
table.remove(positionfix, #positionfix)
table.remove(editedparts, #editedparts)
table.remove(parentfix, #parentfix)
end)
identifytool.Activated:Connect(function()
createnotification("Identify Tool", "Instance: "..mouse.Target.ClassName.."\nName: "..mouse.Target.Name)
end)
movetool.Activated:Connect(function()
createnotification("Move Tool", "You are moving: "..mouse.Target.Name)
movingpart = mouse.Target
movedetect = true
movingpart.CanCollide = false
movetransparency = movingpart.Transparency
movingpart.Transparency = 0.5
mouse.TargetFilter = movingpart
table.insert(editedparts, movingpart)
table.insert(parentfix, movingpart.Parent)
table.insert(positionfix, movingpart.CFrame)
movingpart.Transparency = movingpart.Transparency / 2
repeat
mouse.Move:Wait()
movingpart.CFrame = CFrame.new(mouse.Hit.p)
until movedetect == false
end)
movetool.Deactivated:Connect(function()
createnotification("Move Tool", "You have stopped moving: "..mouse.Target.Name)
movingpart.CanCollide = true
movedetect = false
mouse.TargetFilter = nil
movingpart.Transparency = movetransparenc
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS







Comments
btools yes
tool btools
distintivo/gamepass morphs btools
likes btools
file:///C:/Users/GEYSE/Videos/Roblox/robloxapp-20250309-1738116.wmv