Advertisement
script5873826

OP Lifting Simulator Script

Jun 25th, 2023 (edited)
5,558
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.09 KB | None | 1 2
  1. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  2.  
  3. local Window = Rayfield:CreateWindow({
  4. Name = "Lifting Simulator",
  5. LoadingTitle = "Lifting Simulator",
  6. LoadingSubtitle = "by Roblox Scripter",
  7. ConfigurationSaving = {
  8. Enabled = true,
  9. FolderName = nil, -- Create a custom folder for your hub/game
  10. FileName = "Big Hub"
  11. },
  12. Discord = {
  13. Enabled = false,
  14. Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  15. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  16. },
  17. KeySystem = false, -- Set this to true to use our key system
  18. KeySettings = {
  19. Title = "Untitled",
  20. Subtitle = "Key System",
  21. Note = "No method of obtaining the key is provided",
  22. FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  23. SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  24. GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  25. Key = {"Hello"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  26. }
  27. })
  28.  
  29. Rayfield:Notify({
  30. Title = "Executor Supported",
  31. Content = "You are ready to go!",
  32. Duration = 6.5,
  33. Image = 4483362458,
  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. local MainTab = Window:CreateTab("Main", 4483362458) -- Title, Image
  45. local Section = MainTab:CreateSection("Main")
  46.  
  47. local Button = MainTab:CreateButton({
  48. Name = "Auto Click",
  49. Callback = function()
  50. while wait() do
  51. local args = {
  52. [1] = {
  53. [1] = "GainMuscle"
  54. }
  55. }
  56.  
  57. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  58. end
  59. end,
  60. })
  61.  
  62. local Button = MainTab:CreateButton({
  63. Name = "Auto Sell",
  64. Callback = function()
  65. while wait(1.5) do
  66. local args = {
  67. [1] = {
  68. [1] = "SellMuscle"
  69. }
  70. }
  71. game:GetService("ReplicatedStorage").RemoteEvent:FireServer(unpack(args))
  72. end
  73. end,
  74. })
  75.  
  76. local Button = MainTab:CreateButton({
  77. Name = "Anti-Afk (Credits #James0007",
  78. Callback = function()
  79. while wait(1.5) do
  80. loadstring(game:HttpGet("https://raw.githubusercontent.com/KazeOnTop/Rice-Anti-Afk/main/Wind", true))()
  81. end
  82. end,
  83. })
  84.  
  85. local Button = MainTab:CreateButton({
  86. Name = "Kill Script",
  87. Callback = function()
  88. Rayfield:Destroy()
  89. end,
  90. })
  91.  
  92.  
  93.  
  94. local MiscTab = Window:CreateTab("Misc", 4483362458)
  95. local Section = MiscTab:CreateSection("Section Example")
  96.  
  97. local Button = MiscTab:CreateButton({
  98. Name = "Inf Yield (Don't Use FLY! Admin)",
  99. Callback = function()
  100. loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  101. end,
  102. })
  103.  
  104. local Button = MiscTab:CreateButton({
  105. Name = "Cmd X (Don't Use FLY! Admin)",
  106. Callback = function()
  107. loadstring(game:HttpGet("https://raw.githubusercontent.com/CMD-X/CMD-X/master/Source", true))()
  108. end,
  109. })
  110.  
  111. local Button = MiscTab:CreateButton({
  112. Name = "BackFlip And FrontFlip (Toggles = X,Z) 5 SEC to load",
  113. Callback = function()
  114. -- Copy from where it says wait(5) this is not my script so I will not take script credits
  115.  
  116. -- Discord server coming soon
  117.  
  118. wait(5)
  119.  
  120. --[[ Info ]]--
  121.  
  122. local ver = "2.00"
  123. local scriptname = "feFlip"
  124.  
  125.  
  126. --[[ Keybinds ]]--
  127.  
  128. local FrontflipKey = Enum.KeyCode.Z
  129. local BackflipKey = Enum.KeyCode.X
  130. local AirjumpKey = Enum.KeyCode.C
  131.  
  132.  
  133. --[[ Dependencies ]]--
  134.  
  135. local ca = game:GetService("ContextActionService")
  136. local zeezy = game:GetService("Players").LocalPlayer
  137. local h = 0.0174533
  138. local antigrav
  139.  
  140.  
  141. --[[ Functions ]]--
  142.  
  143. function zeezyFrontflip(act,inp,obj)
  144. if inp == Enum.UserInputState.Begin then
  145. zeezy.Character.Humanoid:ChangeState("Jumping")
  146. wait()
  147. zeezy.Character.Humanoid.Sit = true
  148. for i = 1,360 do
  149. delay(i/720,function()
  150. zeezy.Character.Humanoid.Sit = true
  151. zeezy.Character.HumanoidRootPart.CFrame = zeezy.Character.HumanoidRootPart.CFrame * CFrame.Angles(-h,0,0)
  152. end)
  153. end
  154. wait(0.55)
  155. zeezy.Character.Humanoid.Sit = false
  156. end
  157. end
  158.  
  159. function zeezyBackflip(act,inp,obj)
  160. if inp == Enum.UserInputState.Begin then
  161. zeezy.Character.Humanoid:ChangeState("Jumping")
  162. wait()
  163. zeezy.Character.Humanoid.Sit = true
  164. for i = 1,360 do
  165. delay(i/720,function()
  166. zeezy.Character.Humanoid.Sit = true
  167. zeezy.Character.HumanoidRootPart.CFrame = zeezy.Character.HumanoidRootPart.CFrame * CFrame.Angles(h,0,0)
  168. end)
  169. end
  170. wait(0.55)
  171. zeezy.Character.Humanoid.Sit = false
  172. end
  173. end
  174.  
  175. function zeezyAirjump(act,inp,obj)
  176. if inp == Enum.UserInputState.Begin then
  177. zeezy.Character:FindFirstChildOfClass'Humanoid':ChangeState("Seated")
  178. wait()
  179. zeezy.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  180. end
  181. end
  182.  
  183.  
  184. --[[ Binds ]]--
  185.  
  186. ca:BindAction("zeezyFrontflip",zeezyFrontflip,false,FrontflipKey)
  187. ca:BindAction("zeezyBackflip",zeezyBackflip,false,BackflipKey)
  188. ca:BindAction("zeezyAirjump",zeezyAirjump,false,AirjumpKey)
  189.  
  190. --[[ Load Message ]]--
  191.  
  192. print(scriptname .. " " .. ver .. " loaded successfully")
  193. print("made by RobloxScripter")
  194.  
  195. local notifSound = Instance.new("Sound",workspace)
  196. notifSound.PlaybackSpeed = 1.5
  197. notifSound.Volume = 0.15
  198. notifSound.SoundId = "rbxassetid://170765130"
  199. notifSound.PlayOnRemove = true
  200. notifSound:Destroy()
  201. game.StarterGui:SetCore("SendNotification", {Title = "feFlip", Text = "feFlip loaded successfully!", Icon = "rbxassetid://505845268", Duration = 5, Button1 = "Okay"})
  202. end,
  203. })
  204.  
  205.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement