Advertisement
zazazazza

fallenscriptlol

Jul 3rd, 2024
5,212
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.35 KB | Gaming | 0 0
  1. if Game.PlaceId == 10228136016 then
  2.  
  3. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  4.  
  5. --key system
  6. local Window = Rayfield:CreateWindow({
  7. Name = "Fallen Survival🏹 | SCRIPT V1",
  8. LoadingTitle = "Fallen HUB",
  9. LoadingSubtitle = "by Zay",
  10. ConfigurationSaving = {
  11. Enabled = true,
  12. FolderName = nil, -- Create a custom folder for your hub/game
  13. FileName = "FALLEN"
  14. },
  15. Discord = {
  16. Enabled = True,
  17. Invite = "8ZPjVeAX85", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  18. RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  19. },
  20. KeySystem = True, -- Set this to true to use our key system
  21. KeySettings = {
  22. Title = "Fallen keySystem",
  23. Subtitle = "Key System",
  24. Note = "JOIN DISCORD FOR HELP",
  25. FileName = "FallenKey", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  26. SaveKey = False, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  27. GrabKeyFromSite = True, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  28. Key = {"https://pastebin.com/raw/DaRFsY2N"} -- List of keys that will be accepted by the system, can be RAW file links (pastebin, github etc) or simple strings ("hello","key22")
  29. }
  30. })
  31.  
  32. --Tabs
  33. local MainTab = Window:CreateTab("😎Main", nil) -- Title, Image
  34. local MainSection = MainTab:CreateSection("Main")
  35.  
  36.  
  37. --Notify
  38.  
  39. Rayfield:Notify({
  40. Title = "You have executor this script",
  41. Content = "this gui is v1 first verion",
  42. Duration = 5.5,
  43. Image = nils,
  44. Actions = { -- Notification Buttons
  45. Ignore = {
  46. Name = "rd bet / okay",
  47. Callback = function()
  48. print("The user tapped Okay!")
  49. end
  50. },
  51. },
  52. })
  53. --buttons
  54.  
  55. local Button = MainTab:CreateButton({
  56. Name = "aimbot",
  57. Callback = function()
  58. local AimBotting=false
  59. local AimAtTorso=false
  60. local RayCasting=true
  61. local TeamCheck=true
  62.  
  63. local cast=workspace.FindPartOnRayWithIgnoreList
  64. local ray=Ray.new
  65. local MAX_ITERATIONS=25
  66. local function PiercingCast(p0,p1,ignore)
  67. local Part
  68. local i=0
  69. repeat
  70. i=i+1
  71. local cond=(p1-p0).magnitude<999
  72. Part,p0=cast(workspace,ray(p0,cond and p1-p0 or (p1-p0).unit*999),ignore)
  73. if Part then
  74. if Part.CanCollide==false or Part.Transparency==1 then
  75. ignore[#ignore+1]=Part
  76. Part=nil
  77. end
  78. elseif cond or i>MAX_ITERATIONS then
  79. break
  80. end
  81. until Part
  82. return Part,p0
  83. end
  84.  
  85. local Camera=Workspace.CurrentCamera
  86. local Player=game.Players.LocalPlayer
  87.  
  88. game:GetService("RunService").RenderStepped:connect(function()
  89. if AimBotting or AutoAimBot then
  90. local p=game.Players:GetPlayers()
  91. local d,t=-1
  92. local c=Camera.CoordinateFrame
  93. for i=1,#p do
  94. local ch=p[i].Character
  95. if p[i]~=Player
  96. and ch:FindFirstChild("Humanoid")
  97. and ch:FindFirstChild("Torso")
  98. and ch.Humanoid.Health>0
  99. and not (TeamCheck and Player.TeamColor==p[i].TeamColor or NoKillList[p[i].Name] or ch:FindFirstChild'ForceField') then
  100. local tp=AimAtTorso and ch.Torso.Position or ch.Torso.CFrame*Vector3.new(0,1.5,0)
  101. local HitPart=PiercingCast(c.p,tp,{Camera,Player.Character})
  102. if not (RayCasting and HitPart) or ch:IsAncestorOf(HitPart) then
  103. local m=(tp-c.p).unit:Dot(c.lookVector)
  104. if m==m and m>d then
  105. d,t=m,tp
  106. end
  107. end
  108. end
  109. end
  110. if t then
  111. Camera.CoordinateFrame=CFrame.new(Camera.Focus.p,t)*CFrame.new(0,0,0.5)
  112. end
  113. end
  114. end)
  115.  
  116. local Hint=script.AimbotGui.TextLabel
  117.  
  118. local m=Player:GetMouse()
  119. m.Button2Down:connect(function()
  120. AimBotting=true
  121. --print("AimBotting")
  122. end)
  123. m.Button2Up:connect(function()
  124. AimBotting=false
  125. --print("Idle")
  126. end)
  127.  
  128. m.KeyDown:connect(function(k)
  129. if k=="b" then
  130. AimAtTorso=not AimAtTorso
  131. --print("Aiming for:",AimAtTorso and "Torso" or "Head")
  132. elseif k=="n" then
  133. RayCasting=not RayCasting
  134. --print("RayCastCheck:",RayCasting)
  135. elseif k=="m" then
  136. TeamCheck=not TeamCheck
  137. --print("TeamCheck:",TeamCheck)
  138. elseif k=="k" then
  139. AutoAimBot=not AutoAimBot
  140. --print("AutoAimBot:",AutoAimBot)
  141. elseif k=="h" and Player.Character:FindFirstChild("Humanoid") then
  142. local h=Player.Character.Humanoid
  143. h.Health=h.MaxHealth
  144. end
  145. Hint.Parent.Parent=Player.PlayerGui
  146. Hint.Text="Aiming for: "..(AimAtTorso and "Torso" or "Head").." RayCastCheck: "..tostring(RayCasting).." TeamCheck: "..tostring(TeamCheck).." AutoAimBot: "..tostring(AutoAimBot)
  147. end)
  148.  
  149.  
  150.  
  151. return true
  152. end,
  153. })
  154.  
  155.  
  156. --new one
  157.  
  158. local Button = MainTab:CreateButton({
  159. Name = "esp with Y",
  160. Callback = function()
  161. local Player = game.Players.LocalPlayer
  162. local InputService = game:GetService('UserInputService')
  163.  
  164. InputService.InputBegan:Connect(function(Key,GP)
  165. if Key.KeyCode == Enum.KeyCode.Y and not GP then
  166. for _, GPlayer in pairs(game.Players:GetPlayers()) do
  167. local ESP = Instance.new('Highlight',GPlayer.Character)
  168. ESP.FillColor = Color3.new(0.101961, 1, 0.00392157)
  169. ESP.OutlineTransparency = 1
  170. end
  171. end
  172. end)
  173. end,
  174. })
  175.  
  176. --new one button 2
  177.  
  178. local Button = MainTab:CreateButton({
  179. Name = "turn dark to day",
  180. Callback = function()
  181. local Players = game:GetService("Players")
  182. local Lighting = game:GetService("Lighting")
  183. local UserInputService = game:GetService("UserInputService")
  184.  
  185. local dayEnabled = false
  186. local originalLightingSettings = {}
  187.  
  188. -- Function to toggle between day and night lighting
  189. local function toggleDay()
  190. dayEnabled = not dayEnabled
  191.  
  192. if dayEnabled then
  193. -- Save original lighting settings
  194. originalLightingSettings.Brightness = Lighting.Brightness
  195. originalLightingSettings.ClockTime = Lighting.ClockTime
  196.  
  197. -- Adjust lighting for daytime
  198. Lighting.Brightness = 2 -- Adjust brightness as needed
  199. Lighting.ClockTime = 12 -- Set clock time to noon (12:00)
  200.  
  201. print("Day mode enabled")
  202. else
  203. -- Restore original lighting settings
  204. Lighting.Brightness = originalLightingSettings.Brightness
  205. Lighting.ClockTime = originalLightingSettings.ClockTime
  206.  
  207. print("Day mode disabled")
  208. end
  209. end
  210.  
  211. -- Function to handle input for toggling day mode
  212. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  213. if not gameProcessed and input.KeyCode == Enum.KeyCode.P then -- Change 'P' to any key you prefer
  214. toggleDay()
  215. end
  216. end)
  217.  
  218. -- Handle player leaving event to reset lighting if day mode is active
  219. Players.PlayerRemoving:Connect(function(player)
  220. if dayEnabled then
  221. Lighting.Brightness = originalLightingSettings.Brightness
  222. Lighting.ClockTime = originalLightingSettings.ClockTime
  223. end
  224. end)
  225.  
  226. end,
  227. })
  228.  
  229. --slider
  230.  
  231. local Slider = MainTab:CreateSlider({
  232. Name = "run faster (risk)",
  233. Range = {0, 20},
  234. Increment = 1,
  235. Suffix = "speed",
  236. CurrentValue = 7,
  237. 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
  238. Callback = function(Value)
  239. game.players.localplayer.character.humanoid.walkspeed = (value)
  240. end,
  241. })
  242.  
  243. --button 2
  244.  
  245. local Button = MainTab:CreateButton({
  246. Name = "bypass fly (super risk)",
  247. Callback = function()
  248. Bypass fly script=
  249. loadstring(game:HttpGet("https://pastebin.com/raw/TV83kUPv", true))()
  250. end,
  251. })
  252.  
  253. local Button = MainTab:CreateButton({
  254. Name = "bypass noclip (risk)",
  255. Callback = function()
  256. Bypass fly script=
  257. --r115 noclip bypass new roblox anti-cheat
  258. local plr = game.Players.LocalPlayer
  259. --noclip script starts here.
  260. if plr.Character.Humanoid.RigType == Enum.HumanoidRigType.R15 then
  261. getgenv().r15noclip = true
  262. game:GetService("RunService").Stepped:Connect(function()
  263. if getgenv().r15noclip == true then
  264. Clip = false
  265. if Clip == false and plr.Character ~= nil then
  266. for i,v in pairs(plr.Character:GetDescendants()) do
  267. if v:IsA("BasePart") and v.CanCollide == true and v.Name ~= floatName then
  268. v.CanCollide = false
  269. end
  270. end
  271. end
  272. end
  273. end)
  274. end
  275.  
  276. end,
  277. })
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement