-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNDS.IY
75 lines (73 loc) · 2.83 KB
/
NDS.IY
1
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
--Use event binds if you are smart
--Fuck you DeathbyHate. Suck ducks
local Plugin = {
["PluginName"] = "NDS_Commands",
["PluginDescription"] = "Some useful stuff for Natural Disaster Survival",
["Commands"] = {
["AntiKill"] = {
["ListName"] = "antikill / ak",
["Description"] = "Auto unequip tools",
["Aliases"] = {'ak'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/AntiKill"))();
end
},
["FixTools"] = {
["ListName"] = "fixtools / ft",
["Description"] = "Fix your tools. Bind it to OnSpawn event",
["Aliases"] = {'ft'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/ToolFix"))();
end
},
["NoParticles"] = {
["ListName"] = "noparticles / np",
["Description"] = "Remove Sandstorm/Blizzard Particles. Run it before the disaster starts",
["Aliases"] = {'np'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/RemoveGUI's"))();
end
},
["WaterWalk"] = {
["ListName"] = "waterwalk / ww",
["Description"] = "Walk on water",
["Aliases"] = {'ww'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/WaterWalk"))();
end
},
["NoFallDamage"] = {
["ListName"] = "nofalldamage / nfd",
["Description"] = "Removes Fall Damage",
["Aliases"] = {'nfd'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/NoFallDamage_NDS"))();
end
},
["LoopInvisParts"] = {
["ListName"] = "loopinvisparts / lip",
["Description"] = "See invisflinger",
["Aliases"] = {'lip'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/InvisParts"))();
end
},
["ViewWins"] = {
["ListName"] = "viewwins / vw",
["Description"] = "Move cam to leaderboard",
["Aliases"] = {'vw'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/ViewWins"))();
end
},
["UnViewWins"] = {
["ListName"] = "unviewwins / unvw",
["Description"] = "Move cam back to you",
["Aliases"] = {'unvw'},
["Function"] = function(args,speaker)
loadstring(game:HttpGet("https://raw.githubusercontent.com/DiIemmaDoggo/Scripts/main/UnViewWins"))();
end
}
}
}
return Plugin