Slendy2010

Rayfield script

May 4th, 2024
300
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.48 KB | Source Code | 0 0
  1. --quoc bao rayfield scripts
  2. local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()
  3.  
  4. local Window = Rayfield:CreateWindow({
  5.     Name = "Slendy Hub",
  6.     LoadingTitle = "Slendy Hub",
  7.     LoadingSubtitle = "by Slendy lol",
  8.     ConfigurationSaving = {
  9.        Enabled = true,
  10.        FolderName = nil, -- Create a custom folder for your hub/game
  11.        FileName = "Big Hub"
  12.     },
  13.     Discord = {
  14.        Enabled = false,
  15.        Invite = "noinvitelink", -- The Discord invite code, do not include discord.gg/. E.g. discord.gg/ABCD would be ABCD
  16.        RememberJoins = true -- Set this to false to make them join the discord every time they load it up
  17.     },
  18.     KeySystem = false, -- Set this to true to use our key system
  19.     KeySettings = {
  20.        Title = "Untitled",
  21.        Subtitle = "Key System",
  22.        Note = "No method of obtaining the key is provided",
  23.        FileName = "Key", -- It is recommended to use something unique as other scripts using Rayfield may overwrite your key file
  24.        SaveKey = true, -- The user's key will be saved, but if you change the key, they will be unable to use your script
  25.        GrabKeyFromSite = false, -- If this is true, set Key below to the RAW site you would like Rayfield to get the key from
  26.        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")
  27.     }
  28.  })
  29.  
  30.  local PlayerTab = Window:CreateTab("Blox Fruit", 4483362458) -- Title, Image
  31.  
  32.  local Section = Tab:CreateSection("Main")
  33.  
  34.  Rayfield:Notify({
  35.     Title = "Thông Báo :))",
  36.     Content = "Script bởi Quốc Bảo",
  37.     Duration = 6.5,
  38.     Image = 4483362458,
  39.     Actions = { -- Notification Buttons
  40.        Ignore = {
  41.           Name = "biết rồi má!",
  42.           Callback = function()
  43.           print("The user tapped biết rồi má!")
  44.        end
  45.     },
  46.  },
  47.  })
  48.  
  49.  local Slider = Tab:CreateSlider({
  50.     Name = "WalkSpeed",
  51.     Range = {1, 1000},
  52.     Increment = 1,
  53.     Suffix = "Speed",
  54.     CurrentValue = 10,
  55.     Flag = "Slider1",
  56.     Callback = function(Value)
  57.         game.Players.localPlayer.Character:SetAttribute("SpeedMultiplier",Value)
  58.     end,
  59.  })
  60.  
  61.  local Slider = Tab:CreateSlider({
  62.     Name = "Dash Lenght",
  63.     Range = {1, 1000},
  64.     Increment = 1,
  65.     Suffix = "Lenght",
  66.     CurrentValue = 10,
  67.     Flag = "Slider2",
  68.     Callback = function(Value)
  69.         game.Players.localPlayer.Character:SetAttribute("DashLenght",Value)
  70.     end,
  71.  })
  72.    
  73.  
  74.  
  75.  local Slider = Tab:CreateSlider({
  76.     Name = "Jump Height",
  77.     Range = {1, 1000},
  78.     Increment = 1,
  79.     Suffix = "Height",
  80.     CurrentValue = 10,
  81.     Flag = "Slider3",
  82.     Callback = function(Value)
  83.         game.Players.localPlayer.Character.JumpPower = Value
  84.     end,
  85.  })
  86.    
  87.  local PlayerTab = Window:CreateTab("LocalPlayer", 4483362458) -- Title, Image
  88.  local Section = Tab:CreateSection("Mod")
  89.  
  90.  local Slider = Tab:CreateSlider({
  91.     Name = "Jump Height",
  92.     Range = {1, 1000},
  93.     Increment = 1,
  94.     Suffix = "Height",
  95.     CurrentValue = 10,
  96.     Flag = "Slider1",
  97.     Callback = function(Value)
  98.         game.Players.localPlayer.Character.Humanoid.JumpPower = Value
  99.     end,
  100.  })
  101.  
  102.  local Slider = Tab:CreateSlider({
  103.     Name = "WalkSpeed",
  104.     Range = {1, 1000},
  105.     Increment = 1,
  106.     Suffix = "Speed",
  107.     CurrentValue = 10,
  108.     Flag = "Slider1",
  109.     Callback = function(Value)
  110.         game.Players.localPlayer.Character.Humanoid.WalkSpeed = Value
  111.     end,
  112.  })
Advertisement
Add Comment
Please, Sign In to add comment