Advertisement
mandud2w3wadzoinmad

universal time script

Feb 9th, 2023
2,704
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.82 KB | None | 3 4
  1. local Rayfield = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
  2. local Window = Rayfield:CreateWindow({
  3. Name = " discord.io/sore SORE X",
  4. LoadingTitle = "WELCOME TO SORE X",
  5. LoadingSubtitle = "MADE BY SoreX#2009",
  6. ConfigurationSaving = {
  7. Enabled = true,
  8. FolderName = nil, -- Create a custom folder for your hub/game
  9. FileName = "Big Hub"
  10. },
  11. Discord = {
  12. Enabled = true,
  13. Invite = "sore", -- The Discord invite code, do not include discord.gg/
  14. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  15. },
  16. KeySystem = false, -- Set this to true to use our key system
  17. KeySettings = {
  18. Title = "SoreX key system",
  19. Subtitle = "Key System",
  20. Note = "Join the discord FOR KEY discord.io/sore",
  21. FileName = "KEY SYSTEM",
  22. SaveKey = true,
  23. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  24. Key = "SoreX4life"
  25. }
  26. })
  27.  
  28.  
  29. Rayfield:Notify({
  30. Title = "Key last forever",
  31. Content = "Notification Content",
  32. Duration = 6.5,
  33. Image = 200081952,
  34. Actions = { -- Notification Buttons
  35. Ignore = {
  36. Name = "Okay!",
  37. Callback = function()
  38. print("The user tapped Okay!")
  39. end
  40. },
  41. },
  42. })
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. local Tab = Window:CreateTab("MAIN SCRIPTS!", 200081952) -- Title, Image
  52. local Section = Tab:CreateSection("MAIN SCRIPTS!")
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124. local Main = Tab:CreateButton({
  125. Name = "Infinite Yield",
  126. Callback = function()
  127. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  128. end,
  129. })
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159. local Main = Tab:CreateSlider({
  160. Name = "SPEED SLIDER",
  161. Range = {0, 500},
  162. Increment = 5,
  163. Suffix = "Speed",
  164. CurrentValue = 10,
  165. Flag = "Slider1", -- A flag is the identifier for the configuration file, make sure every element has a different flag if you're using configuration saving to ensure no overlaps
  166. Callback = function(s)
  167. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s
  168. end,
  169. })
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.  
  203.  
  204.  
  205.  
  206.  
  207.  
  208.  
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218.  
  219.  
  220.  
  221.  
  222.  
  223.  
  224.  
  225.  
  226.  
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.  
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309.  
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323.  
  324.  
  325.  
  326.  
  327.  
  328.  
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335.  
  336.  
  337.  
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345.  
  346.  
  347.  
  348.  
  349.  
  350.  
  351.  
  352.  
  353.  
  354.  
  355.  
  356.  
  357.  
  358.  
  359.  
  360.  
  361.  
  362.  
  363.  
  364.  
  365.  
  366.  
  367.  
  368.  
  369.  
  370.  
  371.  
  372.  
  373.  
  374.  
  375.  
  376.  
  377.  
  378.  
  379.  
  380.  
  381.  
  382.  
  383.  
  384.  
  385.  
  386.  
  387.  
  388.  
  389.  
  390.  
  391.  
  392.  
  393.  
  394.  
  395.  
  396.  
  397.  
  398.  
  399. --dahood scripts!
  400. local cool = Window:CreateTab("DAHOOD SCRIPTS!", 448336245)
  401. local Section = cool:CreateSection("DAHOOD SCRIPTS!")
  402.  
  403.  
  404. local main = cool:CreateButton({
  405. Name = "DAHOOD ADMIN FLY",
  406. Callback = function()
  407. loadstring(game:HttpGet("https://pastebin.com/raw/Gq9uPNtH"))()
  408. end,
  409. })
  410.  
  411.  
  412. local main = cool:CreateButton({
  413. Name = "TRUST BOY OP SCRIPT!",
  414. Callback = function()
  415. loadstring(game:HttpGet('https://pastebin.com/raw/XXAWmifh'))()
  416. end,
  417. })
  418.  
  419.  
  420.  
  421.  
  422.  
  423. local main = cool:CreateButton({
  424. Name = "DIAMG SCRIPT OP",
  425. Callback = function()
  426. loadstring(game:HttpGet('https://raw.githubusercontent.com/Dimag16/DimagX_NEW/main/dimagx', true))()
  427. end,
  428. })
  429.  
  430.  
  431.  
  432.  
  433.  
  434. local main = cool:CreateButton({
  435. Name = "HOOD AIM TRAINER!",
  436. Callback = function()
  437. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nosssa/NossLock/main/WinterTime"))()
  438. end,
  439. })
  440.  
  441.  
  442.  
  443.  
  444.  
  445.  
  446.  
  447.  
  448. local main = cool:CreateButton({
  449. Name = "FADED SCRIPT!",
  450. Callback = function()
  451. loadstring(game:HttpGet('https://pastebin.com/raw/HdExQysw'))()
  452. end,
  453. })
  454.  
  455.  
  456.  
  457.  
  458.  
  459. local main = cool:CreateButton({
  460. Name = "SELLER GUI FOR DA HOOD",
  461. Callback = function()
  462. loadstring(game:HttpGet("https://raw.githubusercontent.com/Crostide/cdhc/main/gui"))()
  463. end,
  464. })
  465.  
  466.  
  467.  
  468.  
  469.  
  470.  
  471.  
  472.  
  473. local main = cool:CreateButton({
  474. Name = "OP DAHOOD STREAMBLE LOCK",
  475. Callback = function()
  476. loadstring(game:HttpGet"https://pastebin.com/UQVqNThV")()
  477. end,
  478. })
  479.  
  480.  
  481.  
  482.  
  483.  
  484.  
  485.  
  486.  
  487.  
  488.  
  489.  
  490.  
  491.  
  492. local main = cool:CreateButton({
  493. Name = "STEAL ANY OUTFIT DA HOOD",
  494. Callback = function()
  495. loadstring(game:HttpGet"https://pastebin.com/raw/s4saCn22")()
  496. end,
  497. })
  498.  
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505.  
  506. local main = cool:CreateButton({
  507. Name = "HOOD AIM TRAINER SCRIPT OP",
  508. Callback = function()
  509. loadstring(game:HttpGet("https://raw.githubusercontent.com/Nosssa/NossLock/main/WinterTime"))()
  510. end,
  511. })
  512.  
  513.  
  514.  
  515.  
  516. local main = cool:CreateButton({
  517. Name = "SPACE X DA HOOD SCRIPT!",
  518. Callback = function()
  519. loadstring(game:HttpGet("https://raw.githubusercontent.com/spacexrandom/Lua/main/DaHood", true))()
  520. end,
  521. })
  522.  
  523.  
  524.  
  525.  
  526. local main = cool:CreateButton({
  527. Name = "GET ANY LIMTED VISUALWORKS!",
  528. Callback = function()
  529. loadstring(game:HttpGet("https://pastebin.com/raw/r7B1TXTR"))()
  530. end,
  531. })
  532.  
  533.  
  534.  
  535.  
  536.  
  537.  
  538.  
  539.  
  540.  
  541.  
  542.  
  543. local mainscript = Window:CreateTab("OTHER SCRIPTS!", 448336245) -- Title, Image
  544. local Section = mainscript:CreateSection("OTHER SCRIPTS!")
  545.  
  546.  
  547. local poop = mainscript:CreateButton({
  548. Name = "GET ANY LIMTED VISUALWORKS!",
  549. Callback = function()
  550. loadstring(game:HttpGet("https://pastebin.com/raw/r7B1TXTR"))()
  551. end,
  552. })
  553.  
  554.  
  555.  
  556.  
  557. local poop = mainscript:CreateButton({
  558. Name = "OP TOWER OF HELL SCRIPT!",
  559. Callback = function()
  560. loadstring(game:HttpGet'https://pastebin.com/raw/bS436znx')()
  561. end,
  562. })
  563.  
  564.  
  565.  
  566.  
  567.  
  568.  
  569.  
  570. local poop = mainscript:CreateButton({
  571. Name = "FNAF FORGOTTEN MEMORIES SCRIPT!",
  572. Callback = function()
  573. loadstring(game:HttpGet("https://raw.githubusercontent.com/lolpoppyus/Roblox-Lua/master/ForgottenMemories.lua"))()
  574. end,
  575. })
  576.  
  577.  
  578.  
  579.  
  580.  
  581.  
  582.  
  583. local poop = mainscript:CreateButton({
  584. Name = "OP 3008 SCRIPT",
  585. Callback = function()
  586. loadstring(game:HttpGet'https://raw.githubusercontent.com/RunDTM/scripts/main/3008.lua')()
  587. end,
  588. })
  589.  
  590.  
  591.  
  592.  
  593.  
  594. local poop = mainscript:CreateButton({
  595. Name = "OP BLOXFRUIT SCRIPT!",
  596. Callback = function()
  597. loadstring(game:HttpGet"https://raw.githubusercontent.com/xDepressionx/Free-Script/main/AllScript.lua")()
  598. end,
  599. })
  600.  
  601.  
  602.  
  603.  
  604. local poop = mainscript:CreateButton({
  605. Name = "OP RAGDOLL ENGINE SCRIPT!",
  606. Callback = function()
  607. loadstring(game:HttpGet"https://raw.githubusercontent.com/TestingLua/Hubs/main/Ragdoll%20Engine.lua")()
  608. end,
  609. })
  610.  
  611.  
  612.  
  613.  
  614.  
  615.  
  616.  
  617.  
  618.  
  619. local poop = mainscript:CreateButton({
  620. Name = "OP KNIFE ABILTY TEST SCRIPT!",
  621. Callback = function()
  622. loadstring(game:HttpGet('https://raw.githubusercontent.com/SunkenMuch/Soggyware/main/Main',true))()
  623. end,
  624. })
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635. local poop = mainscript:CreateButton({
  636. Name = "OP BEDWARS SCRIPT!",
  637. Callback = function()
  638. loadstring(game:HttpGet("https://raw.githubusercontent.com/7GrandDadPGN/VapeV4ForRoblox/main/NewMainScript.lua", true))()
  639. end,
  640. })
  641.  
  642.  
  643.  
  644.  
  645.  
  646. local poop = mainscript:CreateButton({
  647. Name = "ARSANAL OP SCRIPT",
  648. Callback = function()
  649. loadstring(game:HttpGet("https://raw.githubusercontent.com/HonestlyDex/DexHub/main/Arsenal"))()
  650. end,
  651. })
  652.  
  653.  
  654.  
  655.  
  656.  
  657.  
  658.  
  659.  
  660.  
  661. local poop = mainscript:CreateButton({
  662. Name = "BROOKHAVEN SCRIPT OP",
  663. Callback = function()
  664. loadstring(game:HttpGet("https://raw.githubusercontent.com/IceMael7/NewIceHub/main/Brookhaven"))()
  665. end,
  666. })
  667.  
  668.  
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675.  
  676.  
  677. local poop = mainscript:CreateButton({
  678. Name = "OP PIGGY SCRIPT!",
  679. Callback = function()
  680. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Piggy/Piggy"))()
  681. end,
  682. })
  683.  
  684.  
  685.  
  686.  
  687.  
  688.  
  689.  
  690.  
  691.  
  692.  
  693.  
  694.  
  695.  
  696. local poop = mainscript:CreateButton({
  697. Name = "OP MAD CITY SCRIPT!",
  698. Callback = function()
  699. loadstring(game:HttpGet("https://gist.githubusercontent.com/paygammy/71fb197d81c71ffff174727f8e9fd21d/raw"))()
  700. end,
  701. })
  702.  
  703.  
  704.  
  705.  
  706.  
  707.  
  708.  
  709.  
  710. local poop = mainscript:CreateButton({
  711. Name = "OP PRISON LIFE SCRIPT!",
  712. Callback = function()
  713. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Prison%20Life/Script.lua"))()
  714. end,
  715. })
  716.  
  717.  
  718.  
  719.  
  720. local poop = mainscript:CreateButton({
  721. Name = "OP COMBAT WARRIORS SCRIPT!",
  722. Callback = function()
  723. loadstring(game:HttpGet("https://projecthook.xyz/scripts/free.lua"))()
  724. end,
  725. })
  726.  
  727.  
  728.  
  729.  
  730.  
  731. local poop = mainscript:CreateButton({
  732. Name = "OP EVADE SCRIPT!",
  733. Callback = function()
  734. loadstring(game:HttpGet("https://raw.githubusercontent.com/Babyhamsta/RBLX_Scripts/main/Evade/main.lua"))()
  735. end,
  736. })
  737.  
  738.  
  739.  
  740.  
  741.  
  742.  
  743.  
  744.  
  745. local poop = mainscript:CreateButton({
  746. Name = "OP DOORS SCRIPT!",
  747. Callback = function()
  748. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/Doors/Script.lua"))()
  749. end,
  750. })
  751.  
  752.  
  753.  
  754.  
  755.  
  756.  
  757. local poop = mainscript:CreateButton({
  758. Name = "OP PLS DONATE SCRIPT!",
  759. Callback = function()
  760. loadstring(game:HttpGet('https://raw.githubusercontent.com/tzechco/roblox-scripts/main/PLS%20DONATE/autofarm.lua'))()
  761. end,
  762. })
  763.  
  764.  
  765.  
  766.  
  767.  
  768.  
  769.  
  770.  
  771. local poop = mainscript:CreateButton({
  772. Name = "OP HOOPZ SCRIPT!",
  773. Callback = function()
  774. loadstring(game:HttpGet('https://pastebin.com/raw/Xu9PNxWd'))()
  775. end,
  776. })
  777.  
  778.  
  779.  
  780.  
  781. local poop = mainscript:CreateButton({
  782. Name = "OP JAILBREAK SCRIPT!",
  783. Callback = function()
  784. loadstring(game:HttpGet("https://raw.githubusercontent.com/KuriWasTaken/MonkeyScripts/main/JailMonkey.lua"))()
  785. end,
  786. })
  787.  
  788.  
  789.  
  790.  
  791.  
  792.  
  793. local poop = mainscript:CreateButton({
  794. Name = "PLS DONATE TP TO RICH SERVER!",
  795. Callback = function()
  796. loadstring(game:HttpGet("https://pastebin.com/raw/3F7Dibza"))()
  797. end,
  798. })
  799.  
  800.  
  801.  
  802.  
  803.  
  804.  
  805.  
  806.  
  807.  
  808.  
  809.  
  810.  
  811.  
  812.  
  813.  
  814.  
  815.  
  816.  
  817.  
  818.  
  819. local poop = mainscript:CreateButton({
  820. Name = "YOUTUBE LIFE SCRIPT!",
  821. Callback = function()
  822. loadstring(game:HttpGet("https://raw.githubusercontent.com/RegularVynixu/Vynixius/main/YouTube%20Life/Auto%20Farm.lua"))()
  823.  
  824. end,
  825. })
  826.  
  827.  
  828.  
  829. local poop = mainscript:CreateButton({
  830. Name = "GAME STORE TYCOON SCRIPT!",
  831. Callback = function()
  832. -- Game Store Tycoon Script - 2022 (COPY THE SCRIPT BELOW!) - ALSO KEEP SPAMMING THE EXECUTE BUTTON TO GET 10,000 +
  833.  
  834. -- JOIN THE DISCORD SERVER - https://discord.gg/3GJECGdCWY
  835.  
  836. local money = 100000
  837. local children = workspace.Tycoons:GetChildren()
  838. for i, child in ipairs(children) do
  839. if child.Info.Owner.Value == game.Players.LocalPlayer.Name then
  840. child.Control.Money:FireServer(money)
  841. end
  842. end
  843.  
  844. end,
  845. })
  846.  
  847.  
  848.  
  849.  
  850.  
  851.  
  852.  
  853.  
  854. local cool = Window:CreateTab("FE SCRIPTS!", 448336245) -- Title, Image
  855. local Section = cool:CreateSection("OP FE SCRIPTS!")
  856.  
  857.  
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864.  
  865.  
  866.  
  867.  
  868.  
  869.  
  870. local main = cool:CreateButton({
  871. Name = "FE FLING GUI",
  872. Callback = function()
  873. loadstring(game:HttpGet('https://pastebin.com/raw/r97d7dS0', true))()
  874. end,
  875. })
  876.  
  877.  
  878.  
  879.  
  880.  
  881.  
  882.  
  883.  
  884. local main = cool:CreateButton({
  885. Name = "Universal FE",
  886. Callback = function()
  887. loadstring(game:HttpGet('https://raw.githubusercontent.com/Dvrknvss/UniversalFEScriptHub/main/Script'))()
  888. end,
  889. })
  890.  
  891.  
  892.  
  893.  
  894.  
  895. local main = cool:CreateButton({
  896. Name = "FE VR SCRIPT NO HATS!",
  897. Callback = function()
  898. loadstring(game:HttpGet"https://pastebin.com/raw/f8j29mMW")()
  899. end,
  900. })
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911. local main = cool:CreateButton({
  912. Name = "FE STURDY NO HATS!",
  913. Callback = function()
  914. for i,v in next, game:GetService("Players").LocalPlayer.Character:GetDescendants() do
  915. if v:IsA("BasePart") and v.Name ~="HumanoidRootPart" then
  916. game:GetService("RunService").Heartbeat:connect(function()
  917. v.Velocity = Vector3.new(1, 25, 1)
  918. end)
  919. end
  920. end
  921.  
  922. wait(3)
  923. local Frame = (60)
  924. local chr = game.Players.LocalPlayer.Character
  925. Service =
  926. setmetatable(
  927. {
  928. Get = function(Self, Serv)
  929. if Service[Serv] then
  930. return Service[Serv]
  931. end
  932. local S = game:GetService(Serv)
  933. if S then
  934. Service[Serv] = S
  935. end
  936. return S
  937. end
  938. },
  939. {
  940. __index = function(Self, Index)
  941. local S = game:GetService(Index)
  942. if S then
  943. Service[Index] = S
  944. end
  945. return S
  946. end
  947. }
  948. )
  949.  
  950. local LP = Service["Players"].LocalPlayer
  951. local Char = LP["Character"]
  952. local Torso, Root, Humanoid = Char["UpperTorso"], Char["HumanoidRootPart"], Char["Humanoid"]
  953. local TService, UIS = Service["TweenService"], Service["UserInputService"]
  954.  
  955. coroutine.wrap(
  956. function()
  957. Root["Anchored"] = true
  958. wait(.8)
  959. Root["Anchored"] = false
  960. end
  961. )()
  962.  
  963. local Create = function(Obj, Parent)
  964. local I = Instance.new(Obj)
  965. I["Parent"] = Parent
  966. return I
  967. end
  968.  
  969. local Contains = function(Table, KV)
  970. for K, V in next, Table do
  971. if rawequal(KV, K) or rawequal(KV, V) then
  972. return true
  973. end
  974. end
  975. return false
  976. end
  977.  
  978. local PoseToCF = function(Pose, Motor)
  979. return (Motor["Part0"].CFrame * Motor["C0"] * Pose["CFrame"] * Motor["C1"]:Inverse()):ToObjectSpace(
  980. Motor["Part0"].CFrame
  981. )
  982. end
  983.  
  984. local Joints = {
  985. ["LeftHand"] = game.Players.LocalPlayer.Character.LeftHand["LeftWrist"],
  986. ["LeftLowerArm"] = chr.LeftLowerArm["LeftElbow"],
  987. ["LeftUpperArm"] = chr.LeftUpperArm["LeftShoulder"],
  988. ["RightHand"] = chr.RightHand["RightWrist"],
  989. ["RightLowerArm"] = chr.RightLowerArm["RightElbow"],
  990. ["RightUpperArm"] = chr.RightUpperArm["RightShoulder"],
  991. ["UpperTorso"] = chr.UpperTorso["Waist"],
  992. ["LeftFoot"] = chr.LeftFoot["LeftAnkle"],
  993. ["LeftLowerLeg"] = chr.LeftLowerLeg["LeftKnee"],
  994. ["LeftUpperLeg"] = chr.LeftUpperLeg["LeftHip"],
  995. ["RightFoot"] = chr.RightFoot["RightAnkle"],
  996. ["RightLowerLeg"] = chr.RightLowerLeg["RightKnee"],
  997. ["RightUpperLeg"] = chr.RightUpperLeg["RightHip"],
  998. ["LowerTorso"] = chr.LowerTorso["Root"]
  999. }
  1000.  
  1001. for K, V in next, Char:GetChildren() do
  1002. if V:IsA("BasePart") then
  1003. coroutine.wrap(
  1004. function()
  1005. repeat
  1006. V["CanCollide"] = false
  1007. Service["RunService"].Stepped:Wait()
  1008. until Humanoid["Health"] < 1
  1009. end
  1010. )()
  1011. end
  1012. end
  1013.  
  1014. for K, V in next, Joints do
  1015. local AP, AO, A0, A1 =
  1016. Create("AlignPosition", V["Part1"]),
  1017. Create("AlignOrientation", V["Part1"]),
  1018. Create("Attachment", V["Part1"]),
  1019. Create("Attachment", V["Part0"])
  1020. AP["RigidityEnabled"] = true
  1021. AO["RigidityEnabled"] = true
  1022. AP["Attachment0"] = A0
  1023. AP["Attachment1"] = A1
  1024. AO["Attachment0"] = A0
  1025. AO["Attachment1"] = A1
  1026. A0["Name"] = "CFAttachment0"
  1027. A1["Name"] = "CFAttachment1"
  1028. A0["CFrame"] = V["C1"] * V["C0"]:Inverse()
  1029. V:Remove()
  1030. end
  1031.  
  1032. local Edit = function(Part, Value, Duration, Style, Direction)
  1033. Style = Style or "Enum.EasingStyle.Linear"
  1034. Direction = Direction or "Enum.EasingDirection.In"
  1035. local Attachment = Part:FindFirstChild("CFAttachment0")
  1036. if Attachment ~= nil then
  1037. TService:Create(
  1038. Attachment,
  1039. TweenInfo.new(
  1040. Duration,
  1041. Enum["EasingStyle"][tostring(Style):split(".")[3]],
  1042. Enum["EasingDirection"][tostring(Direction):split(".")[3]],
  1043. 0,
  1044. false,
  1045. 0
  1046. ),
  1047. {CFrame = Value}
  1048. ):Play()
  1049. end
  1050. end
  1051.  
  1052. if not Service["RunService"]:FindFirstChild("Delta") then
  1053. local Delta = Create("BindableEvent", Service["RunService"])
  1054. Delta["Name"] = "Delta"
  1055. local A, B = 0, tick()
  1056. Service["RunService"].Delta:Fire()
  1057. Service["RunService"].Heartbeat:Connect(
  1058. function(C, D)
  1059. A = A + C
  1060. if A >= (1 / Frame) then
  1061. for I = 1, math.floor(A / (1 / Frame)) do
  1062. Service["RunService"].Delta:Fire()
  1063. end
  1064. B = tick()
  1065. A = A - (1 / Frame) * math.floor(A / (1 / Frame))
  1066. end
  1067. end
  1068. )
  1069. end
  1070.  
  1071. coroutine.wrap(
  1072. function()
  1073. Humanoid["Died"]:Wait()
  1074. for K, V in next, Char:GetDescendants() do
  1075. if V["Name"]:match("Align") then
  1076. V:Destroy()
  1077. end
  1078. end
  1079. end
  1080. )()
  1081.  
  1082. local PreloadAnimation = function(AssetId)
  1083. local Sequence = game:GetObjects("rbxassetid://" .. AssetId)[1]
  1084. assert(Sequence:IsA("KeyframeSequence"), "Instance is not a KeyframeSequence.")
  1085. wait(.06)
  1086. local Class = {}
  1087. Class["Speed"] = 1
  1088. local Yield = function(Seconds)
  1089. local Time = Seconds * (Frame + Sequence:GetKeyframes()[#Sequence:GetKeyframes()].Time)
  1090. for I = 1, Time, Class["Speed"] do
  1091. Service["RunService"].Delta["Event"]:Wait()
  1092. end
  1093. end
  1094. Class["Stopped"] = false
  1095. Class["Complete"] = Instance.new("BindableEvent")
  1096. Class["Play"] = function()
  1097. Class["Stopped"] = false
  1098. coroutine.wrap(
  1099. function()
  1100. repeat
  1101. for K = 1, #Sequence:GetKeyframes() do
  1102. local K0, K1, K2 =
  1103. Sequence:GetKeyframes()[K - 1],
  1104. Sequence:GetKeyframes()[K],
  1105. Sequence:GetKeyframes()[K + 1]
  1106. if Class["Stopped"] ~= true and Humanoid["Health"] > 0 then
  1107. if K0 ~= nil then
  1108. Yield(K1["Time"] - K0["Time"])
  1109. end
  1110. coroutine.wrap(
  1111. function()
  1112. for I = 1, #K1:GetDescendants() do
  1113. local Pose = K1:GetDescendants()[I]
  1114. if Contains(Joints, Pose["Name"]) then
  1115. local Duration =
  1116. K2 ~= nil and (K2["Time"] - K1["Time"]) / Class["Speed"] or .5
  1117. Edit(
  1118. Char[Pose["Name"]],
  1119. PoseToCF(Pose, Joints[Pose["Name"]]),
  1120. Duration,
  1121. Pose["EasingStyle"],
  1122. Pose["EasingDirection"]
  1123. )
  1124. end
  1125. end
  1126. end
  1127. )()
  1128. end
  1129. end
  1130. Class["Complete"]:Fire()
  1131. until Sequence["Loop"] ~= true or Class["Stopped"] ~= false or Humanoid["Health"] < 1
  1132. end
  1133. )()
  1134. end
  1135. Class["Stop"] = function()
  1136. Class["Stopped"] = true
  1137. end
  1138. Class["Reset"] = function()
  1139. coroutine.wrap(
  1140. function()
  1141. wait(.02)
  1142. assert(Class["Stopped"], "Track Must Be Stopped First!")
  1143. for K, V in next, Joints do
  1144. local Part = Char[K]
  1145. if Part ~= nil then
  1146. local Attachment = Part:FindFirstChild("CFAttachment0")
  1147. if Attachment ~= nil then
  1148. Attachment["CFrame"] = V["C1"] * V["C0"]:Inverse()
  1149. end
  1150. end
  1151. end
  1152. end
  1153. )()
  1154. end
  1155. return Class
  1156. end
  1157.  
  1158. Humanoid.WalkSpeed = 16
  1159.  
  1160. local Anims = {
  1161. ["Idle"] = PreloadAnimation(4211217646),
  1162. ["Walk"] = PreloadAnimation(913376220),
  1163. ["Run"] = PreloadAnimation(913376220),
  1164. ["Jump"] = PreloadAnimation(507765000),
  1165. ["Fall"] = PreloadAnimation(507767968)
  1166. }
  1167.  
  1168. wait(1)
  1169. local Connections = {}
  1170.  
  1171. Mouse = LP:GetMouse()
  1172. local Dancing, Running = false, false
  1173.  
  1174. local StopAll = function()
  1175. for K, V in next, Anims do
  1176. if V["Stopped"] ~= true then
  1177. V:Stop()
  1178. end
  1179. end
  1180. end
  1181.  
  1182. Anims["Idle"]:Play()
  1183. Dancing = false
  1184. Anims["Walk"].Stopped = true
  1185. Anims["Run"].Stopped = true
  1186.  
  1187. Connections["Run"] =
  1188. Humanoid["Running"]:Connect(
  1189. function(Speed)
  1190. if Speed > 6 and Dancing ~= true and Anims["Walk"].Stopped ~= false and runnning ~= true then
  1191. Anims["Idle"]:Stop()
  1192. Anims["Jump"]:Stop()
  1193. Anims["Fall"]:Stop()
  1194. Anims["Run"]:Stop()
  1195. Anims["Walk"]:Play()
  1196. elseif Speed < 5 and Dancing ~= true and Anims["Walk"].Stopped ~= true and runnning ~= true then
  1197. Anims["Walk"]:Stop()
  1198. Anims["Jump"]:Stop()
  1199. Anims["Fall"]:Stop()
  1200. Anims["Run"]:Stop()
  1201. Anims["Idle"]:Play()
  1202. elseif Speed < 5 and Dancing ~= true and Anims["Jump"].Stopped ~= true or Anims["Fall"].Stopped ~= true then
  1203. Anims["Walk"]:Stop()
  1204. Anims["Jump"]:Stop()
  1205. Anims["Fall"]:Stop()
  1206. Anims["Run"]:Stop()
  1207. Anims["Idle"]:Play()
  1208. end
  1209. end
  1210. )
  1211. Connections["Jumping"] =
  1212. Humanoid["Jumping"]:Connect(
  1213. function(active)
  1214. if active and Dancing ~= true and Anims["Jump"].Stopped ~= false then
  1215. Anims["Idle"]:Stop()
  1216. Anims["Walk"]:Stop()
  1217. Anims["Fall"]:Stop()
  1218. Anims["Run"]:Stop()
  1219. Anims["Jump"]:Play()
  1220. end
  1221. end
  1222. )
  1223. Connections["FreeFalling"] =
  1224. Humanoid["FreeFalling"]:Connect(
  1225. function(active)
  1226. if active and Dancing ~= true and Anims["Jump"].Stopped ~= false then
  1227. Anims["Idle"]:Stop()
  1228. Anims["Walk"]:Stop()
  1229. Anims["Jump"]:Stop()
  1230. Anims["Run"]:Stop()
  1231. Anims["Fall"]:Play()
  1232. end
  1233. end
  1234. )
  1235.  
  1236. Mouse.KeyDown:connect(
  1237. function(key)
  1238. if key:lower() == string.char(48) then --string.char(48) is just shift
  1239. if Humanoid and Anims["Walk"].Stopped ~= true then
  1240. Anims["Walk"]:Stop()
  1241. Anims["Jump"]:Stop()
  1242. Anims["Fall"]:Stop()
  1243. Anims["Idle"]:Stop()
  1244. Anims["Run"]:Play()
  1245. runnning = true
  1246. Humanoid.WalkSpeed = 26
  1247. end
  1248. end
  1249. end
  1250. )
  1251.  
  1252. --When button is lifted
  1253. Mouse.KeyUp:connect(
  1254. function(key)
  1255. if key:lower() == string.char(48) then --string.char(48) is just shift
  1256. if Humanoid then
  1257. runnning = false
  1258. Humanoid.WalkSpeed = 16
  1259. end
  1260. end
  1261. end
  1262. )
  1263.  
  1264. wait(1)
  1265. local Bind = function(Id, Key, Speed)
  1266. Speed = Speed or 1
  1267. local Animation = PreloadAnimation(Id)
  1268. table.insert(Anims, Animation)
  1269. local V =
  1270. UIS.InputBegan:Connect(
  1271. function(Input, P)
  1272. if Input.KeyCode == Enum.KeyCode[Key] and P ~= true then
  1273. if Dancing ~= true then
  1274. Dancing = true
  1275. StopAll()
  1276. wait(.1)
  1277. Animation:Play()
  1278. Animation["Speed"] = Speed
  1279. else
  1280. Dancing = false
  1281. StopAll()
  1282. wait(.1)
  1283. Anims["Idle"]:Play()
  1284. end
  1285. end
  1286. end
  1287. )
  1288. end
  1289.  
  1290. Bind(10507080897, "Q", 1)
  1291. wait(0.1)
  1292. Bind(10731649737, "Y", 1)
  1293. wait(0.1)
  1294. Bind(10724052169 , "E", 1)
  1295. wait(0.1)
  1296. Bind(10722615238 , "R", 1)
  1297. wait(0.1)
  1298. Bind(5971749922, "T", 1)
  1299. wait(0.1)
  1300. Bind(5349599731, "U", 2)
  1301. wait(0.1)
  1302. Bind(5641878449, "F", 1)
  1303. wait(0.1)
  1304. Bind(5943669474, "O", 1)
  1305. wait(0.1)
  1306. Bind(6024896974, "G", 1)
  1307. wait(0.1)
  1308. Bind(10881761394, "H", 1)
  1309. wait(0.1)
  1310. Bind(1574383214, "J", 1)
  1311. wait(0.1)
  1312. Bind(10881753261, "K", 1)
  1313. wait(0.1)
  1314. Bind(5349600811, "L", 1)
  1315. wait(0.1)
  1316. Bind(10881645631, "Z", 1)
  1317. wait(0.1)
  1318. Bind(10881661040, "X", 1)
  1319. wait(0.1)
  1320. Bind(10881685708, "C", 1)
  1321. wait(0.1)
  1322. Bind(5943658900, "V", 1)
  1323. wait(0.1)
  1324. Bind(10881733560, "B", 1)
  1325. wait(0.1)
  1326. Bind(10881694331, "N", 1)
  1327. wait(0.1)
  1328. Bind(5927871610, "M", 1)
  1329. end,
  1330. })
  1331.  
  1332.  
  1333.  
  1334.  
  1335.  
  1336.  
  1337.  
  1338. local main = cool:CreateButton({
  1339. Name = "FE BALLER SCRIPT!",
  1340. Callback = function()
  1341. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Lowerrated/roblox-fe-baller-script/main/main"))()
  1342. end,
  1343. })
  1344.  
  1345.  
  1346.  
  1347.  
  1348.  
  1349.  
  1350.  
  1351.  
  1352.  
  1353. local main = cool:CreateButton({
  1354. Name = "FE ANY EMOTE!",
  1355. Callback = function()
  1356. loadstring(game:HttpGetAsync("https://raw.githubusercontent.com/Gi7331/scripts/main/Emote.lua"))()
  1357. end,
  1358. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement