Advertisement
1zxyuuki

Ubgmain

Mar 31st, 2025
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.62 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.  
  10. local Gui = Instance.new("ScreenGui")
  11. Gui.Parent = game.Players.LocalPlayer.PlayerGui
  12. Gui.Name = "KnockPower"
  13. Gui.ResetOnSpawn = false
  14.  
  15. local TextLabel = Instance.new("TextLabel")
  16. TextLabel.Parent = Gui
  17. TextLabel.Position = UDim2.new(0.1, 0, 0.7, 0)
  18. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  19. TextLabel.TextScaled = true
  20. TextLabel.Size = UDim2.new(0.1, 0, 0.05, 0)
  21. TextLabel.BackgroundTransparency = 1
  22. TextLabel.Text = "Power: "..settings.Multipliers.KnockbackPower.Value
  23.  
  24. settings.Multipliers.KnockbackPower:GetPropertyChangedSignal("Value"):Connect(function()
  25. TextLabel.Text = "Power: "..settings.Multipliers.KnockbackPower.Value
  26. end)
  27.  
  28.  
  29. local TextLabelSpeed = Instance.new("TextLabel")
  30. TextLabelSpeed.Parent = game.Players.LocalPlayer.PlayerGui.KnockPower
  31. TextLabelSpeed.Position = UDim2.new(0.1, 0, 0.75, 0)
  32. TextLabelSpeed.TextColor3 = Color3.fromRGB(255, 255, 255)
  33. TextLabelSpeed.TextScaled = true
  34. TextLabelSpeed.Size = UDim2.new(0.1, 0, 0.05, 0)
  35. TextLabelSpeed.BackgroundTransparency = 1
  36. TextLabelSpeed.Text = "RagdollPower: "..settings.Multipliers.RagdollPower.Value
  37.  
  38. settings.Multipliers.RagdollPower:GetPropertyChangedSignal("Value"):Connect(function()
  39. TextLabelSpeed.Text = "RagdollPower: "..settings.Multipliers.RagdollPower.Value
  40. end)
  41.  
  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.  
  52. elseif input.KeyCode == Enum.KeyCode.R then
  53. DashSpeed0 = not DashSpeed0
  54. settings.Multipliers.RagdollPower.Value = DashSpeed0 and 1000000 or 100
  55. end
  56. end)
  57.  
  58. local Map = workspace.Map
  59. local Props = Map.Props
  60. local L = game.Lighting
  61.  
  62. for _,v in pairs(Props.Rocks:GetChildren()) do
  63. v:Destroy()
  64. end
  65.  
  66. for _,v in pairs(Props.Bushes:GetChildren()) do
  67. v:Destroy()
  68. end
  69.  
  70. for _,v in pairs(Props.Structures:GetChildren()) do
  71. v:Destroy()
  72. end
  73.  
  74. for _,v in pairs(Props.Trees:GetChildren()) do
  75. v:Destroy()
  76. end
  77.  
  78. for _,v in pairs(Map.Structural.Terrain:GetChildren()) do
  79. v:Destroy()
  80. end
  81.  
  82. local function Sky()
  83. L.Ambient = Color3.fromRGB(0, 0, 0)
  84. L.Brightness = 2
  85. L.EnvironmentSpecularScale = 0
  86. L.GlobalShadows = false
  87. L.OutdoorAmbient = Color3.fromRGB(0, 0, 0)
  88. L.ClockTime = 7
  89. end
  90. Sky()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement