Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- -{BOOMARANG}-These are Script Builder scripts I'm just giving away to you guys.
- --[[THE ONLY RULE: Have fun with them!
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Script 1 - The Levitation Script
- local Character = "kaemi"
- local lev = 236 / 1.2
- local grav = .7
- function dataGetMass(number)
- local totalMass = 0
- local p = workspace[Character]:GetChildren()
- for i = 1, #p do
- if p[i]:IsA("Part") == true then
- totalMass = totalMass + p[i]:GetMass()
- elseif p[i]:IsA("Hat") == true then
- totalMass = totalMass + p[i].Handle:GetMass()
- end
- end
- return totalMass
- end
- local bf = Instance.new("BodyForce")
- bf.Parent = game.Workspace[Character]Head
- bf.force = Vector3.new(0, dataGetMass(number) * lev * grav, 0)
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Script 2 - The Invisibility Script
- local Character = "kaemi"
- for i, v in ipairs(workspace[Character]:GetChildren()) do
- if v:IsA("Hat") == true then
- v.Handle.Transparency = 1
- end
- end
- if workspace[Character]Head:FindFirstChild("face") ~= nil then
- workspace[Character]Head.face.Texture = ""
- elseif workspace[Character]Head:FindFirstChild("face") == nil then
- print("No face detected. O_O")
- end
- if workspace[Character]:FindFirstChild("Shirt Graphic") ~= nil then
- workspace[Character]Torso.roblox.Texture = ""
- elseif p == nil then
- print("No Shirt Grpahic detected.")
- end
- for i, v in ipairs(workspace[Character]:GetChildren()) do
- if v:IsA("Part") == true or v:IsA("TrussPart") == true then
- v.Transparency = 1
- end
- end
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Script 3 - The Invincibility Script
- local Character = "kaemi"
- local f = Instance.new("ForceField")
- f.Parent = workspace[Character]
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Script 4a - AFK
- local Character = "kaemi"
- game.Players[Character]Character.Parent = game.Lighting
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Script 4b - Un AFK
- local Character = "kaemi"
- game.Players[Character]Character.Parent = workspace
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement