local Library = loadstring(game:HttpGet("https://[Log in to view URL]"))()
local Window = Library.CreateLib("Yasin’s Scripts Discord: Yuper#8474(iOS Supported)", "Ocean")
-- MAIN
local Main = Window:NewTab("Yasin’s Main")
local MainSection = Main:NewSection("Yasin’s Main Section")
MainSection:NewButton("Yasin’s MoonUI", "Many Hubs Etc…", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)
MainSection:NewToggle("Yasin’s Super-Human", "go fast and jump high", function(state)
if state then
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120
else
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
end
end)
MainSection:NewButton("Yasin’s iOS Fly", "Flying", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))();
end)
MainSection:NewButton("Yasin’s Btools Scripts", "Btools (Clientsided)", function()
--[[
A distribution of https://[Log in to view URL]
Last updated August 2, 2021
Description: Gives your player the old system of building tools
Instruction: Inject this script into any game using a Lua executor like JJSploit.
]]
backpack = game:GetService("Players").LocalPlayer.Backpack
hammer = Instance.new("HopperBin")
hammer.Name = "Hammer"
hammer.BinType = 4
hammer.Parent = backpack
cloneTool = Instance.new("HopperBin")
cloneTool.Name = "Clone"
cloneTool.BinType = 3
cloneTool.Parent = backpack
grabTool = Instance.new("HopperBin")
grabTool.Name = "Grab"
grabTool.BinType = 2
grabTool.Parent = Backpack
end)
MainSection:NewButton("Yasin’s Click Teleport", "Click teleport (teleport, by clicking anywhere with the tool equipped", function()
mouse = game.Players.LocalPlayer:GetMouse()
tool = Instance.new("Tool")
tool.RequiresHandle = false
tool.Name = "Click Teleport By Yasin"
tool.Activated:connect(function()
local pos = mouse.Hit+Vector3.new(0,2.5,0)
pos = CFrame.new(pos.X,pos.Y,pos.Z)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
end)
tool.Parent = game.Players.LocalPlayer.Backpack
end)
--LOCAL PLAYER
local Player = Window:NewTab("Yasin’s Player")
local PlayerSection = Player:NewSection("Yasin’s Player Section")
PlayerSection:NewButton("Yasin’s Infinity Yield (Crashes)", "Admin", function()
loadstring(game:HttpGet(('https://[Log in to view URL]'),true))()
end)
PlayerSection:NewButton("Yasin’s Float Script", "Im Floating!", function()
--[[
A distribution of https://[Log in to view URL]
Last updated August 2, 2021
Description: Makes your character float into the air
Instruction: Inject this script into any game using a Lua executor like JJSploit.
Re-execute to toggle off and on.
]]
player = game:GetService("Players").LocalPlayer
--Remove BodyVelocity to remove float
if player.Character.HumanoidRootPart:FindFirstChild("WRDBodyVelocity") then
player.Character.HumanoidRootPart.WRDBodyVelocity:Destroy()
--Insert BodyVelocity to add float
else
local bodyVelocity = Instance.new("BodyVelocity")
--So we know what specific instance to remove when toggle off
bodyVelocity.Name = "WRDBodyVelocity"
bodyVelocity.Parent = player.Character.HumanoidRootPart
end
end)
PlayerSection:NewButton("Yasin’s Animation Gui (r15)", "Animation Gui", function()
loadstring(game:HttpGet('https://[Log in to view URL]'))()
end)
PlayerSection:NewButton("Yasin’s No Legs Script", "No Legs Script", function()
--[[
A distribution of https://[Log in to view URL]
Last updated August 2, 2021
Description: Removes your characters legs
Instruction: Inject this script into any game using a Lua executor like JJSploit.
]]
character = game:GetService("Players").LocalPlayer.Character
--R6 Rigs
leftLeg = character:FindFirstChild("Left Leg")
if leftLeg then leftLeg:Destroy() end
rightLeg = character:FindFirstChild("Right Leg")
if rightLeg then rightLeg:Destroy() end
--R15 Rigs
leftUpperLeg = character:FindFirstChild("LeftUpperLeg")
if leftUpperLeg then leftUpperLeg:Destroy() end
leftLowerLeg = character:FindFirstChild("LeftLowerLeg")
if leftLowerLeg then leftLowerLeg:Destroy() end
leftFoot = character:FindFirstChild("LeftFoot")
if leftFoot then leftFoot:Destroy() end
rightUpperLeg = character:FindFirstChild("RightUpperLeg")
if rightUpperLeg then rightUpperLeg:Destroy() end
rightLowerLeg = character:FindFirstChild("RightLowerLeg")
if rightLowerLeg then rightLowerLeg:Destroy() end
rightFoot = character:FindFirstChild("RightFoot")
if rightFoot then rightFoot:Destroy() end
end)
PlayerSection:NewButton("Yasin’s No Arms Script", "No Arms Script", function()
--[[
A distribution of https://[Log in to view URL]
Last updated August 2, 2021
Description: Removes your characters arms
Instruction: Inject this script into any game using a Lua executor like JJSploit.
]]
character = game:GetService("Players").LocalPlayer.Character
--R6 Rigs
leftArm = character:FindFirstChild("Left Arm")
if leftArm then leftArm:Destroy() end
rightArm = character:FindFirstChild("Right Arm")
if rightArm then rightArm:Destroy() end
--R15 Rigs
leftUpperArm = character:FindFirstChild("LeftUpperArm")
if leftUpperArm then leftUpperArm:Destroy() end
leftLowerArm = character:FindFirstChild("LeftLowerArm")
if leftLowerArm then leftLowerArm:Destroy() end
leftFoot = character:FindFirstChild("LeftFoot")
if leftFoot then leftFoot:Destroy() end
rightUpperArm = character:FindFirstChild("RightUpperArm")
if rightUpperArm then rightUpperArm:Destroy() end
rightLowerArm = character:FindFirstChild("RightLowerArm")
if rightLowerArm then rightLowerArm:Destroy() end
rightFoot = character:FindFirstChild("RightFoot")
if rightFoot then rightFoot:Destroy() end
end)
PlayerSection:NewButton("Yasin’s Invisible Script", "Be Invisible", function()
--[[
A distribution of https://[Log in to view URL]
Last updated August 2, 2021
Description: Makes all of your body parts invisible. Only you can see this effect.
Instruction: Inject this script into any game using a Lua executor like JJSploit.
I wrote this while off the boof and realized at the end that I'm a goof for not
simply looping through for BaseParts...
]]
character = game:GetService("Players").LocalPlayer.Character
character.Head.Transparency = 1
--R6 Rigs
torso = character:FindFirstChild("Torso")
if torso then torso.Transparency = 1 end
leftArm = character:FindFirstChild("Left Arm")
if leftArm then leftArm.Transparency = 1 end
rightArm = character:FindFirstChild("Right Arm")
if rightArm then rightArm.Transparency = 1 end
leftLeg = character:FindFirstChild("Left Leg")
if leftLeg then leftLeg.Transparency = 1 end
rightLeg = character:FindFirstChild("Right Leg")
if rightLeg then rightLeg.Transparency = 1 end
--R15 Rigs
upperTorso = character:FindFirstChild("UpperTorso")
if upperTorso then upperTorso.Transparency = 1 end
lowerTorso = character:FindFirstChild("LowerTorso")
if lowerTorso then lowerTorso.Transparency = 1 end
leftUpperArm = character:FindFirstChild("LeftUpperArm")
if leftUpperArm then leftUpperArm.Transparency = 1 end
leftLowerArm = character:FindFirstChild("LeftLowerArm")
if leftLowerArm then leftLowerArm.Transparency = 1 end
leftFoot = character:FindFirstChild("LeftFoot")
if leftFoot then leftFoot.Transparency = 1 end
rightUpperArm = character:FindFirstChild("RightUpperArm")
if rightUpperArm then rightUpperArm.Transparency = 1 end
rightLowerArm = character:FindFirstChild("RightLowerArm")
if rightLowerArm then rightLowerArm.Transparency = 1 end
rightFoot = character:FindFirstChild("RightFoot")
if rightFoot then rightFoot.Transparency = 1 end
leftUpperLeg = character:FindFirstChild("LeftUpperLeg")
if leftUpperLeg then leftUpperLeg.Transparency = 1 end
leftLowerLeg = character:FindFirstChild("LeftLowerLeg")
if leftLowerLeg then leftLowerLeg.Transparency = 1 end
leftFoot = character:FindFirstChild("LeftFoot")
if leftFoot then leftFoot.Transparency = 1 end
rightUpperLeg = character:FindFirstChild("RightUpperLeg")
if rightUpperLeg then rightUpperLeg.Transparency = 1 end
rightLowerLeg = character:FindFirstChild("RightLowerLeg")
if rightLowerLeg then rightLowerLeg.Transparency = 1 end
rightFoot = character:FindFirstChild("RightFoot")
if rightFoot then rightFoot.Transparency = 1 end
end)
PlayerSection:NewButton("Yasin’s Tall Script (r15)", "All scales need to be 100%", function()
--Bad Script Made By Yuper#8474
local LocalPlayer = game:GetService("Players").LocalPlayer
local Character = LocalPlayer.Character
local Humanoid = Character:FindFirstChildOfClass("Humanoid")
function rm()
for i,v in pairs(Character:GetDescendants()) do
if v:IsA("BasePart") then
if v.Name == "Handle" or v.Name == "Head" then
if Character.Head:FindFirstChild("OriginalSize") then
Character.Head.OriginalSize:Destroy()
end
else
for i,cav in pairs(v:GetDescendants()) do
if cav:IsA("Attachment") then
if cav:FindFirstChild("OriginalPosition") then
cav.OriginalPosition:Destroy()
end
end
end
v:FindFirstChild("OriginalSize"):Destroy()
if v:FindFirstChild("AvatarPartScaleType") then
v:FindFirstChild("AvatarPartScaleType"):Destroy()
end
end
end
end
end
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyProportionScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyHeightScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyWidthScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("BodyDepthScale"):Destroy()
wait(1)
rm()
wait(0.5)
Humanoid:FindFirstChild("HeadScale"):Destroy()
wait(1)
end)
PlayerSection:NewButton("Yasin’s Night Toggle Script", "Night", function()
--[[
A distribution of https://[Log in to view URL]
Last updated August 2, 2021
Description: Toggles the time of day between night and morning.
Instruction: Inject this script into any game using a Lua executor like JJSploit.
]]
lighting = game:GetService("Lighting")
if lighting.TimeOfDay == "00:00:00" then
lighting.TimeOfDay = 11
else
lighting.TimeOfDay = 24
end
end)
--Other
local Other = Window:NewTab("Yasin’s Games")
local OtherSection = Other:NewSection("Yasin’s Games Section")
OtherSection:NewButton("Yasin’s Faded", "Faded gui for dahood", function()
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end)
OtherSection:NewButton("Yasin’s Aimlock", "Aimlock", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)
OtherSection:NewButton("Yasin’s Shazam Fly (needs keyboard)", "Shazam fly", function()
-- Da Hood Shazam Fly
--// Settings
_G.ShazamFlySpeed = 3
--// Script
loadstring(game:HttpGet(("https://[Log in to view URL]"), true))()
end)
OtherSection:NewButton("Yasin’s Keyboard Script", "Keyboard script", function()
loadstring(game:HttpGet(('https://[Log in to view URL]'),true))()
end)
OtherSection:NewButton("Yasin’s ESP Script", "Highlight players", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)
OtherSection:NewButton("Yasin’s Headless Script", "Headless being", function()
game.Players.LocalPlayer.Character.Head.Transparency = 1
game.Players.LocalPlayer.Character.Head.Transparency = 1
for i,v in pairs(game.Players.LocalPlayer.Character.Head:GetChildren()) do
if (v:IsA("Decal")) then
v.Transparency = 1
end
end
end)
OtherSection:NewButton("Yasin’s Korblox Script", "Needs korblox recolor", function()
-- hats https://[Log in to view URL]
-- script below
-- | Made by GROUD
function Align(Part0,Part1,Position,Angle)
local AlignPos = Instance.new('AlignPosition', Part1);
AlignPos.Parent.CanCollide = false;
AlignPos.ApplyAtCenterOfMass = true;
AlignPos.MaxForce = 67752;
AlignPos.MaxVelocity = math.huge/9e110;
AlignPos.ReactionForceEnabled = false;
AlignPos.Responsiveness = 200;
AlignPos.RigidityEnabled = false;
local AlignOri = Instance.new('AlignOrientation', Part1);
AlignOri.MaxAngularVelocity = math.huge/9e110;
AlignOri.MaxTorque = 67752;
AlignOri.PrimaryAxisOnly = false;
AlignOri.ReactionTorqueEnabled = false;
AlignOri.Responsiveness = 200;
AlignOri.RigidityEnabled = false;
local AttachmentA=Instance.new('Attachment',Part1);
local AttachmentB=Instance.new('Attachment',Part0);
AttachmentA.Name = "BruhA"
AttachmentB.Name = "BruhB"
AttachmentB.Orientation = Angle
AttachmentB.Position = Position
AlignPos.Attachment0 = AttachmentA;
AlignPos.Attachment1 = AttachmentB;
AlignOri.Attachment0 = AttachmentA;
AlignOri.Attachment1 = AttachmentB;
end
User = game:GetService("Players").LocalPlayer
Body = User.Character
Soul = Body.Humanoid
FakeLeg = Body.RightUpperLeg:Clone()
FakeLeg.Transparency = 1
Body.RightUpperLeg:Destroy()
FakeLeg.Parent = Body
Body.RightUpperLeg.RightUpperLeg:Destroy()
local Korblox = Body["Recolor (For Korblox)"]
Korblox.Handle.Massless = true
Korblox.Handle:BreakJoints()
Align(FakeLeg,Korblox.Handle,Vector3.new(0,.25,0),Vector3.new(0,0,0))
game:GetService("RunService").Heartbeat:connect(function(t)
if Korblox:FindFirstChild("Handle", true) then
Korblox.Handle.Velocity = Vector3.new(0, 30,0)
end;
end)
end)
OtherSection:NewButton("Yasin’s Brookhaven Car Script", "fly with your car", function()
loadstring (game: HttpGet ("https://[Log in to view URL]")) ()
end)
OtherSection:NewButton("Yasin’s Jenga Script", "Jenga", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))();
end)
OtherSection:NewButton("Yasin’s Arsenal Aimlock", "aimbot", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)
OtherSection:NewButton("Yasin’s Project Mutgetsu", "PM", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)
OtherSection:NewButton("Yasin’s Bloxfruits", "script", function()
Loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end)
OtherSection:NewButton("Yasin’s MM2,Yasin’s Madcity,Yasin’s Prisonlife", "script", function()
loadstring(game:HttpGet(('https://[Log in to view URL]'),true))()
--This is for multiple games, Madcity, prison life and murder mystery 2
end)
OtherSection:NewButton("Yasin’s Faded Grid (dahood)", "script", function()
loadstring(game:HttpGet("https://[Log in to view URL]", true))()
end)
OtherSection:NewButton("Yasin’s Jumpscare", "Jumpscare Script", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))()
end)
OtherSection:NewButton("Yasin’s Prison Life", "Script", function()
loadstring(game:HttpGet('https://[Log in to view URL]'))();
end)
OtherSection:NewButton("Yasin’s Dahood Fly", "Script", function()
loadstring(game:HttpGet("https://[Log in to view URL]"))();
end)
To embed this project on your website, copy the following code and paste it into your website's HTML: