Advertisement
1zxyuuki

ubg2

May 5th, 2025 (edited)
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. local rp = game.ReplicatedStorage
  2. local uis = game:GetService("UserInputService")
  3.  
  4. local settings = rp.Settings
  5.  
  6. settings.Cooldowns.Melee.Value = 0
  7. --settings.Multipliers.KnockbackPower.Value = 0
  8. settings.Toggles.NoJumpFatigue.Value = true
  9. settings.Toggles.NoStunOnMiss.Value = true
  10. settings.Cooldowns.Dash.Value = 0
  11.  
  12. local Gui = Instance.new("ScreenGui")
  13. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  14. Gui.Name = "KnockPower"
  15. Gui.ResetOnSpawn = false
  16.  
  17. local TextLabel = Instance.new("TextLabel")
  18. TextLabel.Parent = Gui
  19. TextLabel.Position = UDim2.new(0.1, 0, 0.7, 0)
  20. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  21. TextLabel.TextScaled = true
  22. TextLabel.Size = UDim2.new(0.1, 0, 0.05, 0)
  23. TextLabel.BackgroundTransparency = 1
  24. TextLabel.Text = "Power: "..settings.Multipliers.KnockbackPower.Value
  25.  
  26. settings.Multipliers.KnockbackPower:GetPropertyChangedSignal("Value"):Connect(function()
  27. TextLabel.Text = "Power: "..settings.Multipliers.KnockbackPower.Value
  28. end)
  29.  
  30. local TextLabelSpeed = Instance.new("TextLabel")
  31. TextLabelSpeed.Parent = game.Players.LocalPlayer.PlayerGui.KnockPower
  32. TextLabelSpeed.Position = UDim2.new(0.1, 0, 0.75, 0)
  33. TextLabelSpeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  34. TextLabelSpeed.TextScaled = true
  35. TextLabelSpeed.Size = UDim2.new(0.1, 0, 0.05, 0)
  36. TextLabelSpeed.BackgroundTransparency = 1
  37. TextLabelSpeed.Text = "RagdollPower: "..settings.Multipliers.RagdollPower.Value
  38.  
  39. settings.Multipliers.RagdollPower:GetPropertyChangedSignal("Value"):Connect(function()
  40. TextLabelSpeed.Text = "RagdollPower: "..settings.Multipliers.RagdollPower.Value
  41. end)
  42.  
  43. local DashSpeed0 = false
  44. local Power = false
  45.  
  46. uis.InputBegan:Connect(function(input, GPE)
  47. if GPE then return end
  48. if input.KeyCode == Enum.KeyCode.E then
  49. Power = not Power
  50. settings.Multipliers.KnockbackPower.Value = Power and 0 or 100
  51. elseif input.KeyCode == Enum.KeyCode.R then
  52. DashSpeed0 = not DashSpeed0
  53. settings.Multipliers.RagdollPower.Value = DashSpeed0 and 1000000 or 100
  54. end
  55. end)
  56.  
  57. local Map = workspace.Map
  58. local Props = Map.Props
  59. local L = game.Lighting
  60.  
  61. for _,v in pairs(Props.Rocks:GetChildren()) do
  62. v:Destroy()
  63. end
  64.  
  65. for _,v in pairs(Props.Bushes:GetChildren()) do
  66. v:Destroy()
  67. end
  68.  
  69. for _,v in pairs(Props.Structures:GetChildren()) do
  70. v:Destroy()
  71. end
  72.  
  73. for _,v in pairs(Props.Trees:GetChildren()) do
  74. v:Destroy()
  75. end
  76.  
  77. for _,v in pairs(Map.Structural.Terrain:GetChildren()) do
  78. v:Destroy()
  79. end
  80.  
  81. local function Sky()
  82. L.Ambient = Color3.fromRGB(0, 0, 0)
  83. L.Brightness = 2
  84. L.EnvironmentSpecularScale = 0
  85. L.GlobalShadows = false
  86. L.OutdoorAmbient = Color3.fromRGB(0, 0, 0)
  87. L.ClockTime = 7
  88. end
  89. --Sky()
  90.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement