Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made By BlowTorch702
- --Official Place: https://www.roblox.com/games/3470295245/Better-Rblx-GUI-1-0
- --Press "=" to open and close the GUI. You can change this on line 386
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local MotionBlurButton = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local Version = Instance.new("TextLabel")
- local BlowTorch702 = Instance.new("TextLabel")
- local FullbrightButton = Instance.new("TextButton")
- local NightButton = Instance.new("TextButton")
- local DayButton = Instance.new("TextButton")
- local CoordButton = Instance.new("TextButton")
- local FPSButton = Instance.new("TextButton")
- local VideoSettings = Instance.new("TextLabel")
- local DevSettings = Instance.new("TextLabel")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 255)
- Frame.Position = UDim2.new(0.0252462924, 0, 0.138823956, 0)
- Frame.Size = UDim2.new(0, 158, 0, 363)
- MotionBlurButton.Name = "MotionBlurButton"
- MotionBlurButton.Parent = Frame
- MotionBlurButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- MotionBlurButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
- MotionBlurButton.Position = UDim2.new(0.0534200557, 0, 0.238882333, 0)
- MotionBlurButton.Size = UDim2.new(0, 104, 0, 22)
- MotionBlurButton.Font = Enum.Font.SciFi
- MotionBlurButton.Text = "Motion Blur"
- MotionBlurButton.TextColor3 = Color3.fromRGB(0, 0, 255)
- MotionBlurButton.TextSize = 14.000
- MotionBlurButton.MouseButton1Down:connect(function()
- local camera = workspace.CurrentCamera
- local blurAmount = 10
- local blurAmplifier = 5
- local lastVector = camera.CFrame.LookVector
- local motionBlur = Instance.new("BlurEffect", camera)
- local runService = game:GetService("RunService")
- workspace.Changed:Connect(function(property)
- if property == "CurrentCamera" then
- print("Changed")
- local camera = workspace.CurrentCamera
- if motionBlur and motionBlur.Parent then
- motionBlur.Parent = camera
- else
- motionBlur = Instance.new("BlurEffect", camera)
- end
- end
- end)
- runService.Heartbeat:Connect(function()
- if not motionBlur or motionBlur.Parent == nil then
- motionBlur = Instance.new("BlurEffect", camera)
- end
- local magnitude = (camera.CFrame.LookVector - lastVector).magnitude
- motionBlur.Size = math.abs(magnitude)*blurAmount*blurAmplifier/2
- lastVector = camera.CFrame.LookVector
- end)
- end)
- Title.Name = "Title"
- Title.Parent = Frame
- Title.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Title.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Title.Position = UDim2.new(0.0126582272, 0, 0.0165289249, 0)
- Title.Size = UDim2.new(0, 153, 0, 27)
- Title.Font = Enum.Font.SciFi
- Title.Text = "BETTER RBLX GUI"
- Title.TextColor3 = Color3.fromRGB(0, 0, 255)
- Title.TextSize = 20.000
- Version.Name = "Version"
- Version.Parent = Frame
- Version.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Version.BorderColor3 = Color3.fromRGB(0, 0, 0)
- Version.Position = UDim2.new(0.0126582282, 0, 0.931129396, 0)
- Version.Size = UDim2.new(0, 73, 0, 19)
- Version.Font = Enum.Font.SciFi
- Version.Text = "Version: 1.1"
- Version.TextColor3 = Color3.fromRGB(0, 0, 255)
- Version.TextSize = 14.000
- BlowTorch702.Name = "BlowTorch702"
- BlowTorch702.Parent = Frame
- BlowTorch702.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.BorderColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.Position = UDim2.new(0.481012672, 0, 0.925619781, 0)
- BlowTorch702.Size = UDim2.new(0, 79, 0, 21)
- BlowTorch702.Font = Enum.Font.SciFi
- BlowTorch702.Text = "BlowTorch702"
- BlowTorch702.TextColor3 = Color3.fromRGB(0, 0, 255)
- BlowTorch702.TextSize = 12.000
- FullbrightButton.Name = "FullbrightButton"
- FullbrightButton.Parent = Frame
- FullbrightButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- FullbrightButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
- FullbrightButton.Position = UDim2.new(0.0534200668, 0, 0.161747351, 0)
- FullbrightButton.Size = UDim2.new(0, 104, 0, 22)
- FullbrightButton.Font = Enum.Font.SciFi
- FullbrightButton.Text = "Fulbright"
- FullbrightButton.TextColor3 = Color3.fromRGB(0, 0, 255)
- FullbrightButton.TextSize = 14.000
- FullbrightButton.MouseButton1Down:connect(function()
- local Light = game:GetService("Lighting")
- function dofullbright()
- Light.Ambient = Color3.new(1, 1, 1)
- Light.ColorShift_Bottom = Color3.new(1, 1, 1)
- Light.ColorShift_Top = Color3.new(1, 1, 1)
- end
- dofullbright()
- Light.LightingChanged:Connect(dofullbright)
- end)
- NightButton.Name = "NightButton"
- NightButton.Parent = Frame
- NightButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- NightButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
- NightButton.Position = UDim2.new(0.0534200668, 0, 0.318772137, 0)
- NightButton.Size = UDim2.new(0, 104, 0, 22)
- NightButton.Font = Enum.Font.SciFi
- NightButton.Text = "Night Time"
- NightButton.TextColor3 = Color3.fromRGB(0, 0, 255)
- NightButton.TextSize = 14.000
- NightButton.MouseButton1Down:connect(function()
- game.Lighting:SetMinutesAfterMidnight(0 * 60)
- end)
- DayButton.Name = "DayButton"
- DayButton.Parent = Frame
- DayButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- DayButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
- DayButton.Position = UDim2.new(0.0534200668, 0, 0.401416779, 0)
- DayButton.Size = UDim2.new(0, 104, 0, 22)
- DayButton.Font = Enum.Font.SciFi
- DayButton.Text = "Day Time"
- DayButton.TextColor3 = Color3.fromRGB(0, 0, 255)
- DayButton.TextSize = 14.000
- DayButton.MouseButton1Down:connect(function()
- game.Lighting:SetMinutesAfterMidnight(12 * 60)
- end)
- CoordButton.Name = "CoordButton"
- CoordButton.Parent = Frame
- CoordButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- CoordButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
- CoordButton.Position = UDim2.new(0.0534200668, 0, 0.566706061, 0)
- CoordButton.Size = UDim2.new(0, 104, 0, 22)
- CoordButton.Font = Enum.Font.SciFi
- CoordButton.Text = "Coordinates Grabber"
- CoordButton.TextColor3 = Color3.fromRGB(0, 0, 255)
- CoordButton.TextSize = 11.000
- CoordButton.MouseButton1Down:connect(function()
- -- Instances:
- local Choordinates = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Xcords = Instance.new("TextLabel")
- local grab = Instance.new("TextButton")
- local Ycords = Instance.new("TextLabel")
- local Zcords = Instance.new("TextLabel")
- local BlowTorch702 = Instance.new("TextLabel")
- --Math BS
- function round(val)
- return math.floor( (val * 10^2) + 0.5) / (10^2)
- end
- --Properties:
- Choordinates.Name = "Choordinates"
- Choordinates.Parent = game.CoreGui
- Choordinates.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = Choordinates
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 255)
- Frame.Position = UDim2.new(0.0178400278, 0, 0.471982688, 0)
- Frame.Size = UDim2.new(0, 315, 0, 74)
- Xcords.Name = "Xcords"
- Xcords.Parent = Frame
- Xcords.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Xcords.BorderColor3 = Color3.fromRGB(0, 0, 255)
- Xcords.Position = UDim2.new(0.0291314032, 0, 0.0905468911, 0)
- Xcords.Size = UDim2.new(0, 75, 0, 36)
- Xcords.Font = Enum.Font.SciFi
- Xcords.Text = "X"
- Xcords.TextColor3 = Color3.fromRGB(0, 0, 255)
- Xcords.TextSize = 15.000
- grab.Name = "grab"
- grab.Parent = Frame
- grab.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- grab.BorderColor3 = Color3.fromRGB(0, 0, 255)
- grab.Position = UDim2.new(0.301587313, 0, 0.662162185, 0)
- grab.Size = UDim2.new(0, 125, 0, 17)
- grab.Font = Enum.Font.SciFi
- grab.Text = "Get Coordinates"
- grab.TextColor3 = Color3.fromRGB(0, 0, 255)
- grab.TextSize = 16.000
- grab.MouseButton1Down:connect(function()
- Xcords.Text = "X=" ..round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.x)
- Ycords.Text = "Y=" ..round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.y)
- Zcords.Text = "Z=" ..round(game.Players.LocalPlayer.Character.HumanoidRootPart.Position.z)
- end)
- Ycords.Name = "Ycords"
- Ycords.Parent = Frame
- Ycords.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Ycords.BorderColor3 = Color3.fromRGB(0, 0, 255)
- Ycords.Position = UDim2.new(0.378337741, 0, 0.0905468911, 0)
- Ycords.Size = UDim2.new(0, 75, 0, 36)
- Ycords.Font = Enum.Font.SciFi
- Ycords.Text = "Y"
- Ycords.TextColor3 = Color3.fromRGB(0, 0, 255)
- Ycords.TextSize = 15.000
- Zcords.Name = "Zcords"
- Zcords.Parent = Frame
- Zcords.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Zcords.BorderColor3 = Color3.fromRGB(0, 0, 255)
- Zcords.Position = UDim2.new(0.740242481, 0, 0.0905468911, 0)
- Zcords.Size = UDim2.new(0, 75, 0, 36)
- Zcords.Font = Enum.Font.SciFi
- Zcords.Text = "Z"
- Zcords.TextColor3 = Color3.fromRGB(0, 0, 255)
- Zcords.TextSize = 15.000
- BlowTorch702.Name = "BlowTorch702"
- BlowTorch702.Parent = Frame
- BlowTorch702.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.BorderColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.Position = UDim2.new(0.738155544, 0, 0.655349493, 0)
- BlowTorch702.Size = UDim2.new(0, 79, 0, 21)
- BlowTorch702.Font = Enum.Font.SciFi
- BlowTorch702.Text = "BlowTorch702"
- BlowTorch702.TextColor3 = Color3.fromRGB(0, 0, 255)
- BlowTorch702.TextSize = 12.000
- -- Scripts:
- local function UZHF_fake_script() -- Choordinates.Drag Script
- local script = Instance.new('LocalScript', Choordinates)
- Frame = script.Parent.Frame
- Frame.Draggable = true
- Frame.Active = true
- Frame.Selectable = true
- end
- coroutine.wrap(UZHF_fake_script)()
- end)
- FPSButton.Name = "FPSButton"
- FPSButton.Parent = Frame
- FPSButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- FPSButton.BorderColor3 = Color3.fromRGB(0, 0, 255)
- FPSButton.Position = UDim2.new(0.0534200668, 0, 0.643841088, 0)
- FPSButton.Size = UDim2.new(0, 104, 0, 22)
- FPSButton.Font = Enum.Font.SciFi
- FPSButton.Text = "FPS Counter"
- FPSButton.TextColor3 = Color3.fromRGB(0, 0, 255)
- FPSButton.TextSize = 14.000
- FPSButton.MouseButton1Down:connect(function()
- -- Instances:
- local FPSCounter = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- local BlowTorch702 = Instance.new("TextLabel")
- --Properties:
- FPSCounter.Name = "FPS Counter"
- FPSCounter.Parent = game.CoreGui
- FPSCounter.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- Frame.Parent = FPSCounter
- Frame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- Frame.BorderColor3 = Color3.fromRGB(0, 0, 255)
- Frame.Position = UDim2.new(0.0257735942, 0, 0.450889498, 0)
- Frame.Size = UDim2.new(0, 170, 0, 44)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.Position = UDim2.new(0.0380950011, 0, 0.0733478963, 0)
- TextLabel.Size = UDim2.new(0, 82, 0, 36)
- TextLabel.Font = Enum.Font.SciFi
- TextLabel.Text = "Loading..."
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 255)
- TextLabel.TextSize = 20.000
- BlowTorch702.Name = "BlowTorch702"
- BlowTorch702.Parent = Frame
- BlowTorch702.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.BorderColor3 = Color3.fromRGB(0, 0, 0)
- BlowTorch702.Position = UDim2.new(0.533953786, 0, 0.24380146, 0)
- BlowTorch702.Size = UDim2.new(0, 71, 0, 21)
- BlowTorch702.Font = Enum.Font.SciFi
- BlowTorch702.Text = "BlowTorch702"
- BlowTorch702.TextColor3 = Color3.fromRGB(0, 0, 255)
- BlowTorch702.TextSize = 12.000
- -- Scripts:
- local function UQHMBKG_fake_script() -- FPSCounter.Drag Script
- local script = Instance.new('LocalScript', FPSCounter)
- Frame = script.Parent.Frame
- Frame.Draggable = true
- Frame.Active = true
- Frame.Selectable = true
- end
- coroutine.wrap(UQHMBKG_fake_script)()
- local function RMEPRFA_fake_script() -- TextLabel.FPS Counter Script
- local script = Instance.new('LocalScript', TextLabel)
- local RS = game:GetService("RunService")
- local FPS = 0
- function UpdateFPS()
- FPS = FPS + 1
- end
- RS.RenderStepped:Connect(UpdateFPS)
- while wait(1) do
- script.Parent.Text = FPS.." FPS"
- FPS = 0
- end
- end
- coroutine.wrap(RMEPRFA_fake_script)()
- end)
- VideoSettings.Name = "VideoSettings"
- VideoSettings.Parent = Frame
- VideoSettings.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- VideoSettings.BorderColor3 = Color3.fromRGB(0, 0, 0)
- VideoSettings.Position = UDim2.new(0.0506329536, 0, 0.0909090042, 0)
- VideoSettings.Size = UDim2.new(0, 79, 0, 21)
- VideoSettings.Font = Enum.Font.SciFi
- VideoSettings.Text = "Video Settings"
- VideoSettings.TextColor3 = Color3.fromRGB(0, 0, 255)
- VideoSettings.TextSize = 12.000
- DevSettings.Name = "DevSettings"
- DevSettings.Parent = Frame
- DevSettings.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- DevSettings.BorderColor3 = Color3.fromRGB(0, 0, 0)
- DevSettings.Position = UDim2.new(0.126582325, 0, 0.490358055, 0)
- DevSettings.Size = UDim2.new(0, 79, 0, 21)
- DevSettings.Font = Enum.Font.SciFi
- DevSettings.Text = "Developer Settings"
- DevSettings.TextColor3 = Color3.fromRGB(0, 0, 255)
- DevSettings.TextSize = 12.000
- -- Scripts:
- local function FQKAJ_fake_script() -- Frame.Open/Close Script
- local script = Instance.new('LocalScript', Frame)
- local Plr = game.Players.LocalPlayer
- Plr:GetMouse().KeyDown:Connect(function(K)
- if K == "=" then
- script.Parent.Visible = not script.Parent.Visible
- end
- end)
- end
- coroutine.wrap(FQKAJ_fake_script)()
- local function CTEF_fake_script() -- ScreenGui.Drag Script
- local script = Instance.new('LocalScript', ScreenGui)
- Frame = script.Parent.Frame
- Frame.Draggable = true
- Frame.Active = true
- Frame.Selectable = true
- end
- coroutine.wrap(CTEF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement