Advertisement
Guest User

Bear Script Roblox

a guest
Mar 12th, 2020
6,844
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.79 KB | None | 1 1
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local ImageLabel = Instance.new("ImageLabel")
  4. local TextButton = Instance.new("TextButton")
  5. local TextButton_2 = Instance.new("TextButton")
  6. local TextButton_3 = Instance.new("TextButton")
  7. local TextButton_4 = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. --Properties:
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(0.266667, 0.266667, 0.266667)
  15. Frame.Position = UDim2.new(0.642187476, 0, 0.573148191, 0)
  16. Frame.Size = UDim2.new(0, 596, 0, 308)
  17.  
  18. ImageLabel.Parent = ScreenGui
  19. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  20. ImageLabel.BackgroundTransparency = 1
  21. ImageLabel.Position = UDim2.new(0.642187476, 0, 0.573148131, 0)
  22. ImageLabel.Size = UDim2.new(0, 152, 0, 308)
  23. ImageLabel.Image = "rbxassetid://1871821041"
  24.  
  25. TextButton.Parent = ScreenGui
  26. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  27. TextButton.BackgroundTransparency = 0.89999997615814
  28. TextButton.Position = UDim2.new(0.836979151, 0, 0.573148131, 0)
  29. TextButton.Size = UDim2.new(0, 222, 0, 104)
  30. TextButton.Font = Enum.Font.SciFi
  31. TextButton.Text = "X RAY (x is to toggle)"
  32. TextButton.TextColor3 = Color3.new(0, 0, 0)
  33. TextButton.TextScaled = true
  34. TextButton.TextSize = 14
  35. TextButton.TextWrapped = true
  36.  
  37. TextButton_2.Parent = ScreenGui
  38. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  39. TextButton_2.BackgroundTransparency = 0.89999997615814
  40. TextButton_2.Position = UDim2.new(0.721354127, 0, 0.573148131, 0)
  41. TextButton_2.Size = UDim2.new(0, 222, 0, 104)
  42. TextButton_2.Font = Enum.Font.SciFi
  43. TextButton_2.Text = "NOCLIP"
  44. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  45. TextButton_2.TextScaled = true
  46. TextButton_2.TextSize = 14
  47. TextButton_2.TextWrapped = true
  48.  
  49. TextButton_3.Parent = ScreenGui
  50. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  51. TextButton_3.BackgroundTransparency = 0.89999997615814
  52. TextButton_3.Position = UDim2.new(0.836979151, 0, 0.669444442, 0)
  53. TextButton_3.Size = UDim2.new(0, 222, 0, 104)
  54. TextButton_3.Font = Enum.Font.SciFi
  55. TextButton_3.Text = "speed"
  56. TextButton_3.TextColor3 = Color3.new(0, 0, 0)
  57. TextButton_3.TextScaled = true
  58. TextButton_3.TextSize = 14
  59. TextButton_3.TextWrapped = true
  60.  
  61. TextButton_4.Parent = ScreenGui
  62. TextButton_4.BackgroundColor3 = Color3.new(1, 1, 1)
  63. TextButton_4.BackgroundTransparency = 0.89999997615814
  64. TextButton_4.Position = UDim2.new(0.721354127, 0, 0.669444442, 0)
  65. TextButton_4.Size = UDim2.new(0, 222, 0, 104)
  66. TextButton_4.Font = Enum.Font.SciFi
  67. TextButton_4.Text = "brightness (kinda?)"
  68. TextButton_4.TextColor3 = Color3.new(0, 0, 0)
  69. TextButton_4.TextScaled = true
  70. TextButton_4.TextSize = 14
  71. TextButton_4.TextWrapped = true
  72.  
  73. TextLabel.Parent = ScreenGui
  74. TextLabel.BackgroundColor3 = Color3.new(0.603922, 1, 0.278431)
  75. TextLabel.Position = UDim2.new(0.642187476, 0, 0.526851833, 0)
  76. TextLabel.Size = UDim2.new(0, 596, 0, 50)
  77. TextLabel.Font = Enum.Font.Cartoon
  78. TextLabel.Text = "fe bear gui skid"
  79. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  80. TextLabel.TextScaled = true
  81. TextLabel.TextSize = 14
  82. TextLabel.TextWrapped = true
  83. -- Scripts:
  84. function SCRIPT_ZOLF83_FAKESCRIPT() -- TextButton.LocalScript
  85. local script = Instance.new('LocalScript')
  86. script.Parent = TextButton
  87. function click()
  88. -- ee
  89.  
  90. local t=false
  91.  
  92. local function scan(z,t)
  93. for _,i in pairs(z:GetChildren()) do
  94. if i:IsA("BasePart") and not i.Parent:FindFirstChild("Humanoid") and not i.Parent.Parent:FindFirstChild("Humanoid") then
  95. i.LocalTransparencyModifier=t
  96. end
  97.  
  98. scan(i,t)
  99. end
  100. end
  101.  
  102. function x(v)
  103. if v then
  104. scan(workspace,0.5)
  105. else
  106. scan(workspace,0)
  107. end
  108. end
  109.  
  110. game:GetService("UserInputService").InputBegan:connect(function (input)
  111. if input.UserInputType==Enum.UserInputType.Keyboard and input.KeyCode==Enum.KeyCode.X then
  112. t=not t
  113. x(t)
  114. end
  115. end)
  116. end
  117.  
  118. script.Parent.MouseButton1Down:connect(click)
  119.  
  120. end
  121. coroutine.resume(coroutine.create(SCRIPT_ZOLF83_FAKESCRIPT))
  122. function SCRIPT_YBCY74_FAKESCRIPT() -- TextButton_2.LocalScript
  123. local script = Instance.new('LocalScript')
  124. script.Parent = TextButton_2
  125. function click()
  126. local noclip = true char = game.Players.LocalPlayer.Character while true do if noclip == true then for _,v in pairs(char:children()) do pcall(function() if v.className == "Part" then v.CanCollide = false elseif v.ClassName == "Model" then v.Head.CanCollide = false end end) end end game:service("RunService").Stepped:wait() end
  127. end
  128.  
  129. script.Parent.MouseButton1Down:connect(click)
  130.  
  131. end
  132. coroutine.resume(coroutine.create(SCRIPT_YBCY74_FAKESCRIPT))
  133. function SCRIPT_BTBV74_FAKESCRIPT() -- TextButton_3.LocalScript
  134. local script = Instance.new('LocalScript')
  135. script.Parent = TextButton_3
  136. function click()
  137. game:GetService("Players").LocalPlayer.Character.Humanoid.WalkSpeed = 100
  138. end
  139.  
  140. script.Parent.MouseButton1Down:connect(click)
  141.  
  142. end
  143. coroutine.resume(coroutine.create(SCRIPT_BTBV74_FAKESCRIPT))
  144. function SCRIPT_WMKA75_FAKESCRIPT() -- TextButton_4.LocalScript
  145. local script = Instance.new('LocalScript')
  146. script.Parent = TextButton_4
  147. function click()
  148. local s = Instance.new("PointLight", game.Players.LocalPlayer.Character.Head)
  149. s.Brightness = .9
  150. s.Range = 888
  151.  
  152. game.Lighting.Changed:connect(function()
  153. game.Lighting.TimeOfDay = "14:00:00"
  154. game.Lighting.FogEnd = 9999
  155. game.Lighting.Brightness = 2
  156. game.Lighting.ColorCorrection.Brightness = 0.7
  157. game.Lighting.ColorCorrection.Saturation = 0.1
  158. game.Lighting.Bloom.Intensity = 0.8
  159. end)
  160. end
  161.  
  162. script.Parent.MouseButton1Down:connect(click)
  163.  
  164. end
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement