View difference between Paste ID: 7ywC7drC and gaFi6CW4
SHOW: | | - or go back to the newest paste.
1-
repeat
1+
name = "95audrey"
2-
  wait()
2+
me = game.Players[95audrey]
3-
until script.Parent:FindFirstChild("GUI") ~= nil
3+
 
4-
repeat
4+
if script.Parent.className ~= "HopperBin" then
5-
  wait()
5+
hoppa = Instance.new("HopperBin")
6-
until script.Parent.GUI:FindFirstChild("Spectate") ~= nil
6+
hoppa.Parent = me.Backpack
7-
repeat
7+
hoppa.Name = "Telekinesis"
8-
  wait()
8+
script.Parent = hoppa
9-
until script.Parent.GUI:FindFirstChild("ShopGUI") ~= nil
9+
10-
repeat
10+
bps = {}
11-
  wait()
11+
fair = {}
12-
until script.Parent.GUI:FindFirstChild("Shop") ~= nil
12+
hold = false
13-
local user = game.Players.LocalPlayer
13+
function sel(mouse)
14-
repeat
14+
        mouse.Icon = "rbxasset://textures\\GunCursor.png"
15-
  wait()
15+
        mouse.Button1Down:connect(function()
16-
until user.Character ~= nil
16+
                local targ = mouse.Target
17-
repeat
17+
                if targ ~= nil then
18-
  wait()
18+
                        hold = true
19-
until user:findFirstChild("DATA") ~= nil
19+
                        if targ:GetMass() >= 400 then return end
20-
local data = user:findFirstChild("DATA")
20+
                        local bp = Instance.new("BodyPosition")
21-
wait(0.5)
21+
                        bp.Parent = targ
22-
local code = "SN00PDWG"
22+
                        bp.maxForce = Vector3.new(6000 * targ:GetMass(),6000 * targ:GetMass(),6000 * targ:GetMass())
23-
local code2 = "2SW4GGY4U"
23+
                        bp.position = me.Character.Head.Position + Vector3.new(0,6,0)
24-
local code3 = "TW44T3R"
24+
                        table.insert(bps,bp)
25-
local code4 = "T0X1CK1LL3R"
25+
                        targ.Anchored = false
26-
local code5 = "P1KAP1K4CH00"
26+
                        while hold == true do
27-
local code6 = "IL0V3G3M5"
27+
                                wait()
28-
local code7 = "2SPOOKY4ME"
28+
                                bp.position = me.Character.Head.Position + Vector3.new(0,6,0)
29-
local code8 = "B4TTY4BANANA5"
29+
30-
local code9 = "B1RDYBUD"
30+
31-
local code10 = "THX4TWITCH"
31+
        end)
32-
local code11 = "D3WR1TOS"
32+
        mouse.Button1Up:connect(function()
33-
local code12 = "ST4YFRO5TY"
33+
                hold = false
34-
local code13 = "FROZ3NSOL1D"
34+
                wait(0.03)
35-
local code14 = "GOTT4GOF4ST"
35+
                for i=1, #bps do
36-
local code15 = "SMOK3RYD4Y"
36+
                        bps[i].position = me.Character.Head.Position + Vector3.new(math.random(-20,20),math.random(5,20),math.random(-20,20))
37-
local code16 = "SK3LL1NGTON5"
37+
                        local hu = bps[i].Parent.Parent:findFirstChild("Humanoid")
38-
local code17 = "UR25LOW"
38+
                        if hu ~= nil then
39-
local code18 = "TR1PPYFROGG3R"
39+
                                hu.Sit = true
40-
local code19 = "Y4Y2015"
40+
41-
local code20 = "L3NNY4LYF3"
41+
                        bps[i].Parent.RotVelocity = Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
42-
local code21 = "P34NUTBUTT4H"
42+
                        wait(0.1)
43-
local code22 = "MLGSW4G"
43+
                        bps[i]:remove()
44-
local code23 = "BULL3TB1LL"
44+
                        table.remove(bps, i)
45-
local code24 = "LOV3YOU<3"
45+
46-
local code25 = "LOV3INTH3A1R"
46+
        end)
47-
local code26 = "5PR1NGFL1NG"
47+
48-
local code27 = "2MUCHDUB"
48+
 
49-
local code28 = "MON5T4C4T"
49+
function desel()
50-
local code29 = "JUMPYPUFFY"
50+
hold = false
51-
local code30 = "STABBYPUFF"
51+
for i=1, #bps do
52-
local code31 = "CR1MW3B"
52+
        bps[i]:remove()
53-
local code32 = "H3LLOK1TTY"
53+
        table.remove(bps, i)
54-
local code33 = "1Y3AR<3"
54+
55-
local code34 = "5QU1D5"
55+
56-
local code35 = "Z4MB1EDOG3"
56+
 
57-
local code36 = "Y4Y2016"
57+
script.Parent.Selected:connect(sel)