Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ For any template shares, please make sure to include a list of the abilities inside the template as follows :
- Summon stand = Summon! /e s
- Desummon stand = Vanish! /e v
- Rejoin! / Rejoins
- Leave! / Leaves
- Barrage! / barrages infront of you
- Aura! / goes below u and begins hitting in a circle
- Bring user / Brings person
- Kill user / Loopkills the person
- Stab! / kills nearby players
- Save! / Saves the owner
- Mimic! / mimics the owner's movements [Block, punch, etc]
- ]]--
- --/ Beginner links are provided in-case your unsure what you're doing. / Please refer to template sharing & ability sharing in https://discord.com/invite/jojoW for already made templates and abilities.
- getgenv().Settings = {
- ['Made By JoJo#2494'] = {
- CHECK = {OWNER = "genarac5", STAND = "cweaminmepwes"}, --/ Do not use UserId & Make sure your executing on the correct account.
- FPS = 60, --/ Will control FPS can improve the overall performance on both instances when set to lower.
- PERFORMANCE = false, --/ If set to true it'll significantly improve your overall FPS if you're struggling with performance.
- NOCLIP = {SynapseX = false, Offset = -3.05}, --/ Offset will control the height of normal noclip (keep unchanged unless you're using titan with a big character / SynapseX option).
- FACELESS = true, --/ If you want to remove your face.
- TRAILS = true, --/ If you want to remove the white trail when charge attacking.
- LEGS = false, --/ If set to true it'll remove your legs.
- ANTIFLING = true, --/ If set to true you can't get flinged nor can you fling anyone.
- TELEPORTMAIN = true, --/ Teleports to the stand user
- RANGE = 50, --/ Controls the melee reach range (50 is max).
- TITAN = {ENABLED = true, DEFAULT = false, TALL = false, WIDE = true, GODV3 = false}, --/ If enabled you will become a titan stand depending which settings you choose, if you enable god you need to execute before load for it to work (also can be used with titan disabled).
- FOLLOWANIM = {true, ID = 3541044388, SPEED = 0.25}, --/ If set to true will play the desired animation when moving (DEFAULT ANIMATION IS SUGGESTED), SPEED will control the speed (Recommended is 0.25).
- AUTOPICKUPCASH = true, --/ If set to true will automatically pick up cash when you're near it & should not be used if your dropping cash.
- }
- }
- --[[
- Developer notes :
- - I will not provide template abilities for this current release and probably not for foreseeable future, so it is a MUST that you somewhat read this tutorial / guide regarding this stand creator.
- - You are directly responsible and held accountable for any clips/bans/etc.. You are advised to not use this script on accounts that you care about.
- - If you have any questions or concerns regarding this script, please contact me (https://discord.com/invite/jojoW) at #support.
- ]]--
- --/ DOCUMENTATION OF THE FUNCTIONS \--
- --/ 1. Create('COMMANDNAMEHERE', function() --/ This will create an chat command / replace COMMANDNAME inside the brackets with your desired command name.
- --/ 2. CreateAction('LOOPNAMEHERE', function() --/ This will create an action this should be placed before (1).
- --/ 3. CreateKeybind('KEYBINDHERE', function() --/ This will create a keybind command, it'll only work on the stand (Refer to "https://developer.roblox.com/en-us/api-reference/enum/KeyCode") for keybinds.
- --/ 4. CreateTargetAbility("COMMANDNAMEHERE", function() --/ This will use an command on a target you choose / eg..(Attack! Bacon)
- --/ 5. CreateLoop("LOOPNAMEHERE", function() --/ This will begin looping the arguments specified until stopped (5).
- --/ 6. StopLoop("LOOPNAMEHERE") --/ This will stop the specified loop (4).
- --/ 7. Stand.Action = "LOOPNAMEHERE" --/ This will begin the specified loop/action that you have created (Refer to 2). Stand.Action = "" will essentially stop the action.
- --/ 8. Play(ID, true) --/ This will begin playing the specified audio in the first argument, The second argument true/false + If the second argument is set to false it'll begin looping the audio.
- --/ 9. Stop() --/ This will stop any audios from playing.
- --/ 10. AnimPlay(ID,SPEED) --/ This will begin playing the specified animation (ONLY DH / ROBLOX ANIMATIONS), SPEED will control the animationspeed (Default is 1).
- --/ 11. AnimStop(ID,SPEED) --/ This will stop playing the specified animation, SPEED will control the stopping speed (Default is 1).
- --/ 12. Chat("TEXTGOESHERE") --/ Will chat the specified text in the first argument (stand cry / eg.. following you master).
- --/ 13. Buy.Item() --/ Will buy the specified melee (make sure you have enough cash). eg.. Buy.Knife(), Buy.Bat(), Buy.StopSign(), Buy.Shovel(), Buy.Pencil(), Buy.Nunchucks(), Buy.SledgeHammer(), Buy.Grenade(), Buy.Flashbang(), Buy.Boxing(), Buy.Default().
- --/ 14. Hit(true) --/ If the first argument is set to true it'll do a charge attack + If the first argument is set to false it'll do a quick punch.
- --/ 15. Crew(true,ID) --/ If the first argument is set true it'll join the crew specified(ID) + If the first argument is set to false it'll leave any current crew.
- --/ 16. DropMoney(Amount) --/ This will drop the amount of money specified.
- --/ 17. GetNearest() --/ This will get the nearest enemy player.
- --/ 18. Equip(Tool) --/ This will equip the specific tool eg.. "Combat", "Wallet", [Knife], [Bat], [StopSign], [Shovel], [Pencil], [Nunchucks], [SledgeHammer], [Grenade], [Flashbang] --/ In-case your item is not on this list use darkdex.
- --/ 19. Unequip() --/ This will unequip any currently equipped tools.
- --[[ -- IGNORE THIS LINE
- --/ DOCUMENTATION OF EXAMPLES \--
- --/ 1. This will print the username of the target nearest to the owner.
- Create("test", function() --/ This will create an command.
- local Target = GetNearest() --/ Have an local Target = GetNearest()
- print(Target.Name) --/ This will print the nearest player relative to you.
- end) --/ Always remember end) on every command.
- --/ 2. This will create an summon action / we will detail in this part what we during while it's summoned.
- CreateAction("Summoned", function() --/ It's good practise to name the action in relation to what it is doing.
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(1,1.85,2.5) --/ This is the position of your stand relative to the owner. (xyz + edit the numbers)
- end) --/ Always remember end)
- --/ 2,5. This is a chat command same as in (1), we will use this to trigger Summoned. (2)
- Create("Summon!", function()
- Stand.Action = "Summoned" --/ This is where we choose the action, we have made "Summoned" so we'll pick that.
- end)
- --/ 3. This is a command to stop the action. (2)
- Create("Desummon!", function()
- Stand.Action = "" --/ We leave it as blank to stop the action. / You should not make a action with a blank name.
- end)
- --/ 4. This will make the stand teleport the target.
- CreateTargetAbility("Goto!", function()
- Stand.Action = "" -- We will stop any current actions from interfering with this command.
- local Target = Stand.Target
- STAND.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
- end)
- --/ 5. This will make the stand constantly attack around the player, Remember to always create the action before command (Refer to 2).
- CreateAction("Aura", function()
- local RANDOM = math.random(-10,10)
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(OWNER.Character.UpperTorso.Position.X + RANDOM, StandUser.Character.UpperTorso.Position.Y + RANDOM, OWNER.Character.UpperTorso.Position.Z + RANDOM)
- Hit(false)
- end)
- --/ 5.5. Same as in (2.5).
- Create("/e aura", function()
- Stand.Action = "Aura"
- end)
- --/ 6. This will purchase an item utilizing the buy function.
- Create("Knife!", function()
- Buy.Knife() -- Refer to (10)
- end)
- ]]-- IGNORE THIS LINE
- --/ STAND NAME & ABILITY IDEAS : \--
- -- https://jojowiki.com/List_of_Stands
- --/ STAND OUTFIT IDEAS : \--
- -- https://www.roblox.com/games/9714571746/JoJos-Bizarre-Collection
- --/ JOJO SOUND EFFECTS : \--
- -- https://www.roblox.com/develop/library?CatalogContext=2&Subcategory=16&CreatorName=jojoaudio&SortAggregation=5&LegendExpanded=true&Category=9
- -- https://www.roblox.com/develop/library?CatalogContext=2&Subcategory=16&CreatorName=Tsuagon&SortAggregation=5&LegendExpanded=true&Category=9
- --/ USEFUL SOURCES FOR BEGINNERS \--
- -- https://developer.roblox.com/en-us/articles/Understanding-CFrame
- -- https://developer.roblox.com/en-us/learn-roblox/coding-scripts
- -- https://scriptinghelpers.org/
- -- https://youtube.com/playlist?list=PLw1uWqQBDcgjKqFjPNgtVtBNx3xTGz-l7
- --/---------------------------------------------------------------------------------------------\--
- loadstring(game:HttpGet("https://raw.githubusercontent.com/JOJOGIO/STAND-FRAMEWORK/main/v1.0.6"))()
- --/---------------------------------------------------------------------------------------------\--/ CreateAction goes below this :
- CreateAction("Summoned", function()
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(1,1.85,2.5)
- end)
- CreateAction("Barrage", function()
- if STAND.Character.HumanoidRootPart then
- if OWNER.Character.HumanoidRootPart then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,0.85,-4.85)
- if STAND.Character:FindFirstChild("Combat") then
- Hit(false)
- else
- Equip("Combat")
- Hit(false)
- end
- end
- end
- end)
- CreateAction("Aura", function()
- wait()
- if OWNER.Character.Humanoid.FloorMaterial == Enum.Material.Air then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-20,0)
- Hit(false)
- elseif OWNER.Character.Humanoid.FloorMaterial ~= Enum.Material.Air then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0 + math.random(-8.5,8.5),-10,0 + math.random(-8.5,8.5))
- Hit(false)
- else
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-25,0)
- end
- end)
- CreateAction("poof", function()
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(-10,-10,-10)
- Hit(true)
- end)
- CreateAction("Sa1ve", function()
- Chat("OWNERRR")
- Stand.Action = ""
- repeat wait()
- if OWNER.Character.BodyEffects["K.O"].Value == false then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.UpperTorso.CFrame
- elseif OWNER.Character.BodyEffects["K.O"].Value == true then
- wait(0.5)
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(OWNER.Character.UpperTorso.Position.X , OWNER.Character.UpperTorso.Position.Y +0.5, OWNER.Character.UpperTorso.Position.Z )
- wait(0.5)
- if STAND.Character.BodyEffects["Grabbed"].Value == nil then
- wait(0.9)
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Grabbing", false)
- end
- end
- until Stand.Action == "Summoned" or Target == nil or not Target.Character.BodyEffects:FindFirstChild("K.O") or not Target.Character.BodyEffects:FindFirstChild("Defense") or STAND.Character.BodyEffects["Grabbed"].Value ~= nil
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(-205.789703, 160.413025, 1.48631835)
- wait(1)
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Grabbing", false)
- wait(2)
- Stand.Action = "Summoned"
- end)
- --/---------------------------------------------------------------------------------------------\--/ Create & CreateTargetAbility goes below this :
- Create("Appear!", function()
- Chat("I'm here, master.")
- pcall(function()
- game:GetService("RunService"):UnbindFromRenderStep("TARGETKILL")
- game:GetService("RunService"):UnbindFromRenderStep("GRAB")
- Stop()
- end)
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-0.7,1.45)
- wait(0.07)
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-0.7,1.45)
- wait(0.07)
- Stand.Action = "Summoned"
- end)
- Create("Vanish!", function()
- Chat("I will be back, master.")
- pcall(function()
- Stop()
- end)
- Stand.Action = ""
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-0.7,1.45)
- wait(0.09)
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-100,0)
- end)
- Create("/e q", function()
- Chat("I'm here, master.")
- pcall(function()
- game:GetService("RunService"):UnbindFromRenderStep("TARGETKILL")
- game:GetService("RunService"):UnbindFromRenderStep("GRAB")
- Stop()
- end)
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-0.7,1.45)
- wait(0.07)
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-0.7,1.45)
- wait(0.07)
- Stand.Action = "Summoned"
- end)
- Create("/e v!", function()
- Chat("I will be back, master.")
- pcall(function()
- Stop()
- end)
- Stand.Action = ""
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-0.7,1.45)
- wait(0.09)
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(0,-100,0)
- end)
- Create("Rejoin!", function()
- game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, game.JobId, STAND)
- end)
- CreateTargetAbility("Bring!", function()
- Chat("UR COMIN WITH ME HEHE")
- local Target = Stand.Target
- if Target then
- Stand.Action = ""
- game:GetService("RunService"):BindToRenderStep("GRAB", -1 , function()
- if Target and Target.Character and Target.Character:FindFirstChild("BodyEffects") and Target.Character.BodyEffects:FindFirstChild("K.O") then
- if Target.Character.BodyEffects["K.O"].Value == true then
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(Target.Character.UpperTorso.Position.X , Target.Character.UpperTorso.Position.Y + 1, Target.Character.UpperTorso.Position.Z )
- if STAND.Character.BodyEffects["Grabbed"].Value == nil then
- game:GetService("VirtualInputManager"):SendKeyEvent(true,"G",false,game)
- end
- end
- if Target.Character.BodyEffects["K.O"].Value == false then
- STAND.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame*CFrame.new(0,-6,0)
- if STAND.Character:FindFirstChildWhichIsA("Tool") then
- Hit(true)
- else
- Equip("Combat")
- Hit(true)
- end
- end
- if Target == nil or STAND.Character.BodyEffects["Grabbed"].Value ~= nil then
- game:GetService("RunService"):UnbindFromRenderStep("GRAB")
- Stand.Action = "Summoned"
- end
- end
- end)
- end
- end)
- CreateTargetAbility("SHINEI", function()
- local Target = Stand.Target
- if Target then
- Stand.Action = ""
- game:GetService("RunService"):BindToRenderStep("TARGETKILL", -1 , function()
- if Target and Target.Character and Target.Character:FindFirstChild("BodyEffects") and Target.Character.BodyEffects:FindFirstChild("K.O") then
- if Target.Character.BodyEffects["K.O"].Value == true then
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(Target.Character.UpperTorso.Position.X , Target.Character.UpperTorso.Position.Y + 1, Target.Character.UpperTorso.Position.Z )
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Stomp")
- else
- STAND.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame*CFrame.new(0,-10,0)
- if STAND.Character:FindFirstChildWhichIsA("Tool") then
- Hit(true)
- else
- Equip("Combat")
- Hit(true)
- end
- end
- end
- end)
- end
- end)
- CreateAction("aura1", function()
- Target = GetNearest()
- Range = 25
- local x = math.random(-5,5)
- local b = (OWNER.Character.UpperTorso.Position - Target.Character.UpperTorso.Position).Magnitude
- if Target and Target.Character and Target.Character:FindFirstChild("UpperTorso") and b < Range and Target.Character:FindFirstChild("BodyEffects") and Target.Character.BodyEffects:FindFirstChild("Defense") and Target.Character.BodyEffects:FindFirstChild("K.O") and Target.Character.BodyEffects.Attacking.Value == false and Target.Character.BodyEffects["K.O"].Value == false then
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(Target.Character.UpperTorso.Position.X + x, Target.Character.UpperTorso.Position.Y + x, Target.Character.UpperTorso.Position.Z + x)
- Hit(true) -- if true will charge
- else
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(1,1.85,2.5)
- end
- end)
- ----Save function work in process
- CreateAction("Save", function()
- Stand.Action = ""
- repeat wait()
- if OWNER.Character.BodyEffects["K.O"].Value == false then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.UpperTorso.CFrame
- elseif OWNER.Character.BodyEffects["K.O"].Value == true then
- wait(0.5)
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(OWNER.Character.UpperTorso.Position.X , OWNER.Character.UpperTorso.Position.Y +0.5, OWNER.Character.UpperTorso.Position.Z )
- wait(0.5)
- if STAND.Character.BodyEffects["Grabbed"].Value == nil then
- wait(0.9)
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Grabbing", true)
- end
- end
- until Stand.Action == "Summoned" or Target == nil or not Target.Character.BodyEffects:FindFirstChild("K.O") or not Target.Character.BodyEffects:FindFirstChild("Defense") or STAND.Character.BodyEffects["Grabbed"].Value ~= nil
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(-205.789703, 160.413025, 1.48631835)
- wait(1)
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Grabbing", false)
- wait(2)
- Stand.Action = "Summoned"
- end)
- CreateAction("S", function()
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(-2,4,3)
- end)
- CreateAction("SR", function()
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame*CFrame.new(2,4,3)
- end)
- CreateTargetAbility("Goto!", function()
- local Target = Stand.Target
- STAND.Character.HumanoidRootPart.CFrame = Target.Character.HumanoidRootPart.CFrame
- end)
- CreateTargetAbility("jump!", function()
- Chat("watch out")
- local Target = Stand.Target
- if Target then
- Hit(false)
- wait(0.7)
- Stand.Action = ""
- repeat wait()
- if Target.Character.BodyEffects["K.O"].Value == false then
- Hit(false)
- STAND.Character.HumanoidRootPart.CFrame = Target.Character.UpperTorso.CFrame
- elseif Target.Character.BodyEffects["K.O"].Value == true then
- wait(0.7)
- STAND.Character.HumanoidRootPart.CFrame = CFrame.new(Target.Character.UpperTorso.Position.X , Target.Character.UpperTorso.Position.Y +0.5, Target.Character.UpperTorso.Position.Z )
- wait(1)
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Grabbing", true)
- wait(1.5)
- for i,v in pairs(STAND.Character:GetChildren()) do
- if v:IsA("BasePart") then v:Destroy() end end
- end
- until Stand.Action == "Summoned" or Target == nil or not Target.Character.BodyEffects:FindFirstChild("K.O") or not Target.Character.BodyEffects:FindFirstChild("Defense")
- Stand.Action = "Summoned"
- wait(1)
- end
- end)
- CreateAction("Fro2nt Stab12", function()
- if STAND.Character.HumanoidRootPart then
- if OWNER.Character.HumanoidRootPart then
- Hit(false)
- wait(1)
- Stand.Action = "Summoned"
- end
- end
- end)
- CreateAction("Mimic1", function()
- local Block = OWNER.Character.BodyEffects:FindFirstChild('Block')
- if OWNER.Character.BodyEffects.Attacking.Value == true then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-6)
- if STAND.Character:FindFirstChild('Combat') then
- STAND.Character:FindFirstChild('Combat'):Activate()
- wait()
- STAND.Character:FindFirstChild('Combat'):Deactivate()
- else
- STAND.Backpack:FindFirstChild('Combat').Parent = STAND.Character
- end
- elseif Block then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-6)
- if not STAND.Character.BodyEffects:FindFirstChild('Block') then
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Block", true)
- end
- else
- if STAND.Character.BodyEffects:FindFirstChild('Block') then
- STAND.Character.BodyEffects:FindFirstChild('Block'):Destroy()
- end
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame * CFrame.new(1,1.85,2.5)
- end
- end)
- CreateAction("Mimic", function()
- local Block = OWNER.Character.BodyEffects:FindFirstChild('Block')
- if OWNER.Character.BodyEffects.Attacking.Value == true then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-6)
- if STAND.Character:FindFirstChild('Combat') then
- STAND.Character:FindFirstChild('Combat'):Activate()
- else
- STAND.Backpack:FindFirstChild('Combat').Parent = STAND.Character
- end
- elseif Block then
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,-6)
- if not STAND.Character.BodyEffects:FindFirstChild('Block') then
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Block", true)
- end
- else
- if STAND.Character.BodyEffects:FindFirstChild('Block') then
- STAND.Character.BodyEffects:FindFirstChild('Block'):Destroy()
- end
- STAND.Character.HumanoidRootPart.CFrame = OWNER.Character.HumanoidRootPart.CFrame * CFrame.new(1,1.85,2.5)
- end
- end)
- --/---------------------------------------------------------------------------------------------\--/ Create & CreateTargetAbility & CreateLoop goes below this :
- Create("Save!", function ()
- Stand.Action = "Save"
- end)
- Create("Stab!", function()
- Stand.Action = "aura1"
- end)
- Create("Leave!", function()
- game:Shutdown()
- end)
- Create("MUDA!", function()
- Chat("MUDA MUDA MUDA MUDA")
- Stand.Action = "Barrage"
- end)
- Create('Aura!', function()
- Stand.Action = "Aura"
- end)
- Create("GROUND!", function()
- Chat("bye") --change thea text to whatever u want
- Stand.Action = "poof"
- end)
- Create("left!", function()
- Stand.Action = "S"
- end)
- Create("right!", function()
- Stand.Action = "SR"
- end)
- Create("/e aura", function()
- Stand.Action = "Aura"
- end)
- Create("roast!", function()
- Chat("get good son")
- wait(1.00)
- Chat("GROW UP LOL")
- wait(1.00)
- Chat("i own you")
- wait(1.00)
- Chat("bro a baby plays better than you")
- wait(1.00)
- Chat("nahh bro has the playstation 2")
- wait(1.00)
- Chat("even yuki can aim better")
- wait(1.00)
- end)
- Create("nut!", function()
- Chat("i love that cream")
- wait(1.00)
- Chat("mmm yes mommy/daddy mmmmm")
- end)
- Create("cmds", function()
- Chat("Khoard!, Save!, Stab!, SHINEI! user")
- wait(2.50)
- Chat("aura or /e aura, roast!, nut!")
- wait(2.50)
- Chat("left, right GROUND!, MUDA!")
- wait(2.50)
- Chat("Vanish!, Appear! /e q /e v")
- wait(2.50)
- Chat("Light!, Heavy, Drop!, Jump!")
- wait(2.50)
- Chat("Save drop!, ZA WARUDO!, Drop!, Bring! user")
- wait(2.50)
- Chat()
- end)
- Create("Khord!", function()
- Chat("if u want the stand script andrew tate # 33 85")
- end)
- Create("ZA WARUDO!", function()
- Stand.Action = "Fro2nt Stab12"
- end)
- Create("light!", function()
- Chat("Light Mimic activated.")
- Stand.Action = "Mimic1"
- end)
- Create("Heavy!", function()
- Chat("Heavy Mimic activated.")
- Stand.Action = "Mimic"
- end)
- Create("Save drop!", function ()
- Stand.Action = "Sa1ve"
- end)
- Create("drop!", function()
- game:GetService("ReplicatedStorage").MainEvent:FireServer("Grabbing", false)
- Stand.Action = "Summoned"
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement