Advertisement
DE_Speedruns

Admin Omg

May 9th, 2024
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.51 KB | None | 0 0
  1. -- Coems🤑
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15.  
  16.  
  17.  
  18.  
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104. game.StarterGui:SetCore("SendNotification", {
  105. Title = "If You Found Player Name Depth_Scripter Yeah He Is Owner of Script";
  106. Text = "Enjoy"; -- what the text says (ofc)
  107. Duration = 20;
  108. })
  109.  
  110. game.StarterGui:SetCore("SendNotification", {
  111. Title = "Owner of Script";
  112. Text = "Ok"; -- what the text says (ofc)
  113. Duration = 20;
  114. })
  115.  
  116. game.Players.LocalPlayer.Chatted:connect(function(msg)
  117. if msg:sub(1, 6) == ";ball" then
  118. for _, tool in ipairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  119. if tool:IsA("Tool") then
  120. tool.Parent = game:GetService("Players").LocalPlayer.Character -- I didn't use Equip because the Equip function unequips any other tools in your character.
  121. end
  122. end
  123. for i = 1, 2 do
  124. for i,v in pairs(game.Players.LocalPlayer.Character:GetDescendants()) do
  125. if v:IsA("Tool") then
  126. v.Parent = game.Players.LocalPlayer:FindFirstChildOfClass("Backpack")
  127. v.GripPos = Vector3.new(1.5, 1.5, -0.7)
  128. v.GripForward = Vector3.new(0, -0, 1)
  129. v.Handle.Massless = true
  130. v.Parent = game.Players.LocalPlayer.Character
  131. end
  132. end
  133. end
  134. end
  135. end)
  136.  
  137. game.Players.LocalPlayer.Chatted:connect(function(msg)
  138. if msg:sub(1, 6) == ";goto " then
  139. local player
  140. for i, plr in ipairs(game.Players:GetPlayers()) do
  141. if string.lower(plr.Name):sub(1, string.len(msg:sub(7))) == string.lower(msg:sub(7)) then
  142. player = plr.Name
  143. end
  144. end
  145. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = workspace[player].HumanoidRootPart.CFrame
  146. end
  147. end)
  148.  
  149. game.Players.LocalPlayer.Chatted:connect(function(msg)
  150. if msg:sub(1, 6) == ";sit" then
  151. loadstring(game:HttpGet("https://pastefy.app/g6vQxFKD/raw"))()
  152. end
  153. end)
  154.  
  155. game.Players.LocalPlayer.Chatted:connect(function(msg)
  156. if msg:sub(1, 6) == ";cmds" then
  157. print(";ball : Make Items Become your Balls")
  158. print("1.;goto Players Name : You Can goto Someone")
  159. print("1.;car : This Command Give you Free Car Gui")
  160. print(";Bring all : You Can Bring Everyone And Kill")
  161. print(";Antifling : Who Can fling you?")
  162. end
  163. end)
  164.  
  165. game.Players.LocalPlayer.Chatted:connect(function(msg)
  166. if msg:sub(1, 6) == ";car" then
  167. loadstring(game:HttpGet("https://pastefy.app/m2RDzo1x/raw"))()
  168. end
  169. end)
  170.  
  171. game.Players.LocalPlayer.Chatted:connect(function(msg)
  172. if msg:sub(1, 6) == ";Bring all" then
  173. local localPlayer = game.Players.LocalPlayer
  174. local localPlayerCF = localPlayer.Character.HumanoidRootPart.CFrame
  175.  
  176. for _, player in pairs(game.Players:GetPlayers()) do
  177. if player ~= localPlayer then
  178. player.Character.HumanoidRootPart.CFrame = localPlayerCF
  179. player.Character.Humanoid.PlatformStand = true
  180. player.Character.Humanoid.WalkSpeed = 0
  181. player.Character.Humanoid.JumpPower = 0
  182. for _, part in pairs(player.Character:GetDescendants()) do
  183. if part:IsA("BasePart") then
  184. part.Anchored = true
  185. end
  186. end
  187. end
  188. end
  189.  
  190. localPlayer.Character.HumanoidRootPart.Anchored = false
  191. end
  192. end)
  193.  
  194. game.Players.LocalPlayer.Chatted:connect(function(msg)
  195. if msg:sub(1, 6) == ";Antifling" then
  196. -- // Constants \\ --
  197. -- [ Services ] --
  198. local Services = setmetatable({}, {__index = function(Self, Index)
  199. local NewService = game.GetService(game, Index)
  200. if NewService then
  201. Self[Index] = NewService
  202. end
  203. return NewService
  204. end})
  205.  
  206. -- [ LocalPlayer ] --
  207. local LocalPlayer = Services.Players.LocalPlayer
  208.  
  209. -- // Functions \\ --
  210. local function PlayerAdded(Player)
  211. local Detected = false
  212. local Character;
  213. local PrimaryPart;
  214.  
  215. local function CharacterAdded(NewCharacter)
  216. Character = NewCharacter
  217. repeat
  218. wait()
  219. PrimaryPart = NewCharacter:FindFirstChild("HumanoidRootPart")
  220. until PrimaryPart
  221. Detected = false
  222. end
  223.  
  224. CharacterAdded(Player.Character or Player.CharacterAdded:Wait())
  225. Player.CharacterAdded:Connect(CharacterAdded)
  226. Services.RunService.Heartbeat:Connect(function()
  227. if (Character and Character:IsDescendantOf(workspace)) and (PrimaryPart and PrimaryPart:IsDescendantOf(Character)) then
  228. if PrimaryPart.AssemblyAngularVelocity.Magnitude > 50 or PrimaryPart.AssemblyLinearVelocity.Magnitude > 100 then
  229. if Detected == false then
  230. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  231. Text = "Fling Exploit detected, Player: " .. tostring(Player);
  232. Color = Color3.fromRGB(255, 200, 0);
  233. })
  234. end
  235. Detected = true
  236. for i,v in ipairs(Character:GetDescendants()) do
  237. if v:IsA("BasePart") then
  238. v.CanCollide = false
  239. v.AssemblyAngularVelocity = Vector3.new(0, 0, 0)
  240. v.AssemblyLinearVelocity = Vector3.new(0, 0, 0)
  241. v.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0)
  242. end
  243. end
  244. PrimaryPart.CanCollide = false
  245. PrimaryPart.AssemblyAngularVelocity = Vector3.new(0, 0, 0)
  246. PrimaryPart.AssemblyLinearVelocity = Vector3.new(0, 0, 0)
  247. PrimaryPart.CustomPhysicalProperties = PhysicalProperties.new(0, 0, 0)
  248. end
  249. end
  250. end)
  251. end
  252.  
  253. -- // Event Listeners \\ --
  254. for i,v in ipairs(Services.Players:GetPlayers()) do
  255. if v ~= LocalPlayer then
  256. PlayerAdded(v)
  257. end
  258. end
  259. Services.Players.PlayerAdded:Connect(PlayerAdded)
  260.  
  261. local LastPosition = nil
  262. Services.RunService.Heartbeat:Connect(function()
  263. pcall(function()
  264. local PrimaryPart = LocalPlayer.Character.PrimaryPart
  265. if PrimaryPart.AssemblyLinearVelocity.Magnitude > 250 or PrimaryPart.AssemblyAngularVelocity.Magnitude > 250 then
  266. PrimaryPart.AssemblyAngularVelocity = Vector3.new(0, 0, 0)
  267. PrimaryPart.AssemblyLinearVelocity = Vector3.new(0, 0, 0)
  268. PrimaryPart.CFrame = LastPosition
  269.  
  270. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  271. Text = "You were flung. Neutralizing velocity.";
  272. Color = Color3.fromRGB(255, 0, 0);
  273. })
  274. elseif PrimaryPart.AssemblyLinearVelocity.Magnitude < 50 or PrimaryPart.AssemblyAngularVelocity.Magnitude > 50 then
  275. LastPosition = PrimaryPart.CFrame
  276. end
  277. end)
  278. end)
  279. end
  280. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement